summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
...
| * | | | | | | | Merge pull request #4497 from soloestoy/optimize-unlink-clientSalvatore Sanfilippo2017-12-053-4/+12
| |\ \ \ \ \ \ \ \
| | * | | | | | | | networking: optimize unlinkClient() in freeClient()zhaozhao.zz2017-11-303-4/+12
| | |/ / / / / / /
| * | | | | | | | Merge pull request #4508 from trevor211/fixNotesSalvatore Sanfilippo2017-12-052-3/+6
| |\ \ \ \ \ \ \ \
| | * | | | | | | | fix some notesWuYunlong2017-12-052-3/+6
| * | | | | | | | | Merge branch 'unstable' of github.com:/antirez/redis into unstableantirez2017-12-052-6/+1
| |\ \ \ \ \ \ \ \ \
| | * \ \ \ \ \ \ \ \ Merge pull request #4488 from itamarhaber/debug_aritySalvatore Sanfilippo2017-12-052-6/+1
| | |\ \ \ \ \ \ \ \ \
| | | * | | | | | | | | Standardizes arity handling of DEBUGItamar Haber2017-11-282-6/+1
| | | | |/ / / / / / / | | | |/| | | | | | |
| * | | | | | | | | | dict: fix the int problem for defragzhaozhao.zz2017-12-053-5/+5
| * | | | | | | | | | dict: fix the int problemzhaozhao.zz2017-12-051-9/+9
| |/ / / / / / / / /
| * | | | | | | | | Merge pull request #4509 from soloestoy/set-int-problemSalvatore Sanfilippo2017-12-051-4/+10
| |\ \ \ \ \ \ \ \ \ | | |_|/ / / / / / / | |/| | | | | | | |
| | * | | | | | | | set: fix the int problem for qsortzhaozhao.zz2017-12-051-2/+8
| | * | | | | | | | set: fix the int problem for SPOP & SRANDMEMBERzhaozhao.zz2017-12-051-2/+2
| |/ / / / / / / /
| * | | | | | | | Merge pull request #4506 from soloestoy/quicklist-int-problemSalvatore Sanfilippo2017-12-043-6/+6
| |\ \ \ \ \ \ \ \
| | * | | | | | | | quicklist: change the len of quicklist to unsigned longzhaozhao.zz2017-12-042-4/+4
| | * | | | | | | | quicklist: fix the return value of quicklistCountzhaozhao.zz2017-12-042-2/+2
| |/ / / / / / / /
| * | | | | | | | Streams: fix a few type mismatches in t_stream.c.antirez2017-12-041-2/+4
| * | | | | | | | Refactoring: improve luaCreateFunction() API.antirez2017-12-043-58/+38
| * | | | | | | | Remove useless variable check from luaCreateFunction().antirez2017-12-041-1/+1
| * | | | | | | | Fix issue #4505, Lua RDB AUX field loading of existing scripts.antirez2017-12-041-3/+9
| * | | | | | | | Regression test for #4505 (Lua AUX field loading).antirez2017-12-041-1/+22
| * | | | | | | | DEBUG change-repl-id implemented.antirez2017-12-041-0/+7
| * | | | | | | | Fix loading of RDB files lua AUX fields when the script is defined.antirez2017-12-013-5/+11
| * | | | | | | | Streams: DEBUG DIGEST support.antirez2017-12-011-0/+21
| * | | | | | | | Streams: add code to compute the stream memory usage.antirez2017-12-011-0/+43
| * | | | | | | | Streams: add some initial test for XREVRANGE.antirez2017-12-011-0/+8
| * | | | | | | | Streams: fix lp-count field for non-same-fields entries.antirez2017-12-011-2/+6
| * | | | | | | | Streams: XRANGE REV option -> XREVRANGE command.antirez2017-12-013-7/+18
| * | | | | | | | Streams: fix reverse iterator discarding of items out of range.antirez2017-12-011-5/+12
| * | | | | | | | Streams: fix reverse iteration next node jumping.antirez2017-12-011-1/+5
| * | | | | | | | Streams: state machine for reverse iteration WIP 1.antirez2017-12-014-42/+98
| * | | | | | | | Streams: augment stream entries to allow backward scanning.antirez2017-12-011-12/+35
| * | | | | | | | Streams: Update listpack to fix 32bit strings encoding error.antirez2017-12-011-2/+2
| * | | | | | | | Streams: fix COUNT parsing, issue #4433.antirez2017-12-011-1/+1
| * | | | | | | | Streams: fix redis-cli to understand the stream type.antirez2017-12-011-2/+5
| * | | | | | | | Streams: fix TYPE for stream type.antirez2017-12-011-0/+1
| * | | | | | | | Streams: fix XREAD test broken after previous tests improvements.antirez2017-12-011-1/+1
| * | | | | | | | Streams: move ID ms/seq separator from '.' to '-'antirez2017-12-012-11/+11
| * | | | | | | | 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: add XADD + MAXLEN test.antirez2017-12-011-0/+17
| * | | | | | | | 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: modify tests to stress compression.antirez2017-12-011-5/+10
| * | | | | | | | 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: tests for blocking and non-blocking XREAD.antirez2017-12-011-0/+90
| * | | | | | | | Streams: XRANGE fuzz testing.antirez2017-12-011-1/+52