summaryrefslogtreecommitdiff
path: root/src
Commit message (Expand)AuthorAgeFilesLines
...
| * | Streams: fix TYPE for stream type.antirez2017-12-011-0/+1
| * | Streams: move ID ms/seq separator from '.' to '-'antirez2017-12-011-4/+4
| * | Streams: fix XADD + MAXLEN propagation due to var shadowing.antirez2017-12-011-4/+4
| * | Streams: fix memory leak in streamTrimByLength().antirez2017-12-011-0/+1
| * | Streams: fix streamTrimByLength() standalone items skipping.antirez2017-12-011-1/+1
| * | Streams: XADD MAXLEN implementation.antirez2017-12-011-3/+129
| * | Streams: reduce listpack max size to 2k to speedup range queries.antirez2017-12-011-1/+1
| * | Streams: delta encode IDs based on key. Add count + deleted fields.antirez2017-12-012-39/+61
| * | Streams: specify better how the master enty works.antirez2017-12-011-1/+25
| * | Streams: items compression implemented.antirez2017-12-012-34/+142
| * | Streams: fixed memory leaks when blocking again for same stream.antirez2017-12-011-1/+4
| * | Streams: AOF rewriting + minor iterator improvements.antirez2017-12-012-5/+42
| * | Streams: export iteration API.antirez2017-12-013-24/+31
| * | Streams: implement streamReplyWithRange() in terms of the iterator.antirez2017-12-011-66/+23
| * | Streams: stream iteration refactoring, WIP 2.antirez2017-12-011-0/+19
| * | Streams: stream iteration refactoring, WIP 1.antirez2017-12-011-0/+114
| * | Streams: fix bug in XREAD last received ID processing.antirez2017-12-011-2/+3
| * | Streams: fix memory leak in freeStream().antirez2017-12-011-0/+1
| * | Streams: rewrite XADD ID argument for AOF/slaves.antirez2017-12-011-0/+10
| * | Streams: fix XADD API and keyspace notifications.antirez2017-12-014-12/+75
| * | Streams: When XREAD blocks without COUNT, set a default one.antirez2017-12-011-0/+6
| * | Streams: fix handleClientsBlockedOnKeys() access to invalid ID.antirez2017-12-011-1/+4
| * | Streams: fix XREAD ready-key signaling.antirez2017-12-015-7/+14
| * | Streams: fix XREAD timeout handling, zero is valid.antirez2017-12-011-2/+2
| * | Streams: XREAD related code to serve blocked clients.antirez2017-12-012-1/+50
| * | Streams: XREAD ability to block fixed.antirez2017-12-012-5/+4
| * | Streams: synchronous xread fixes and improvements.antirez2017-12-011-7/+22
| * | Streams: XREAD get-key method fixed.antirez2017-12-011-4/+6
| * | Streams: XREAD get-keys method.antirez2017-12-013-0/+31
| * | Streams: XREAD, first draft. Handling of blocked clients still missing.antirez2017-12-011-10/+46
| * | Streams: XREAD arguments parsing.antirez2017-12-011-0/+72
| * | Streams: augment client.bpop with XREAD specific fields.antirez2017-12-014-0/+18
| * | Streams: more internal preparation for blocking XREAD.antirez2017-12-013-12/+28
| * | Streams: initial work to use blocking lists logic for streams XREAD.antirez2017-12-016-215/+234
| * | Streams: implement stream object release.antirez2017-12-015-5/+25
| * | Streams: XLEN command.antirez2017-12-013-0/+11
| * | Streams: Save stream->length in RDB.antirez2017-12-011-1/+7
| * | Streams: change listpack allocator to zmalloc.antirez2017-12-011-3/+4
| * | Streams: RDB loading. RDB saving modified.antirez2017-12-011-0/+40
| * | Streams: RDB saving.antirez2017-12-015-2/+29
| * | Streams: assign value of 6 to OBJ_STREAM + some refactoring.antirez2017-12-013-10/+17
| * | Streams: 12 commits squashed into the initial Streams implementation.antirez2017-12-0112-10/+1323
| * | PSYNC2: Fix off by one buffer size in luaCreateFunction().antirez2017-11-301-1/+1
| * | PSYNC2: just store script bodies into RDB.antirez2017-11-302-30/+19
| * | PSYNC2: luaCreateFunction() should handle NULL client parameter.antirez2017-11-301-5/+10
| * | PSYNC2: Save Lua scripts state into RDB file.antirez2017-11-302-0/+48
| * | Prevent corruption of server.executable after DEBUG RESTART.antirez2017-11-301-0/+2
| * | Be more verbose when DEBUG RESTART fails.antirez2017-11-301-3/+16
| * | Merge branch 'lfu-fixes' into unstableantirez2017-11-296-26/+175
| |\ \
| | * | LFU: Fix LFUDecrAndReturn() to just decrement.antirez2017-11-281-13/+3