summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Fix 2.8 backport of fastscript branch.2.8-fastscriptantirez2014-05-071-2/+1
* Scripting test: check that Lua can call commands rewirting argv.antirez2014-05-071-1/+14
* Test: handle new osx 'leaks' error.antirez2014-05-071-1/+2
* Scripting: objects caching for Lua c->argv creation.antirez2014-05-071-3/+40
* Scripting: Use faster API for Lua client c->argv creation.antirez2014-05-071-3/+6
* Scripting: don't call lua_gc() after Lua script run.antirez2014-05-071-1/+17
* Scripting: cache argv in luaRedisGenericCommand().antirez2014-05-071-4/+15
* Fixed missing c->bufpos reset in luaRedisGenericCommand().antirez2014-05-071-0/+1
* Scripting: replace tolower() with faster code in evalGenericCommand().antirez2014-05-071-1/+5
* Scripting: luaRedisGenericCommand() fast path for buffer-only replies.antirez2014-05-071-7/+15
* Define HAVE_ATOMIC for clang.antirez2014-05-071-1/+1
* Scripting: simpler reply buffer creation in luaRedisGenericCommand().antirez2014-05-071-5/+2
* Add test for deleting an expired keyMatt Stancliff2014-04-231-0/+8
* Check key expiration before deletingMatt Stancliff2014-04-231-0/+1
* fix null pointer access with no file pointerGlauber Costa2014-04-231-1/+1
* Merge pull request #1700 from nirvdrum/patch-1Salvatore Sanfilippo2014-04-231-2/+2
|\
| * Fixed typos.Kevin Menard2014-04-221-2/+2
* | Missing return REDIS_ERR added to processMultibulkBuffer().antirez2014-04-231-1/+3
|/
* redis-cli help.h updated.antirez2014-04-221-2/+73
* generate-command-help.rb updated with new hyperloglog group.antirez2014-04-221-1/+2
* Redis 2.8.9.2.8.9antirez2014-04-222-1/+11
* Fuzzy test for ZREMRANGEBYLEX added.antirez2014-04-181-1/+41
* ZREMRANGEBYLEX memory leak removed calling zslFreeLexRange().antirez2014-04-181-2/+5
* PFCOUNT multi-key test added.antirez2014-04-181-0/+15
* Speedup hllRawSum() processing 8 bytes per iteration.antirez2014-04-181-7/+15
* Speedup SUM(2^-reg[m]) in HyperLogLog computation.antirez2014-04-181-4/+8
* PFCOUNT support for multi-key union.antirez2014-04-182-6/+73
* HyperLogLog low level merge extracted from PFMERGE.antirez2014-04-181-39/+54
* ZREMRANGEBYLEX implemented.antirez2014-04-183-0/+77
* Always pass sorted set range objects by reference.antirez2014-04-182-45/+47
* ZREMRANGE* commands refactored into a single generic function.antirez2014-04-181-65/+58
* Sorted set lex ranges stress tester.antirez2014-04-181-0/+65
* Basic ZRANGEBYLEX / ZLEXCOUNT tests.antirez2014-04-171-0/+56
* Pass by pointer and release of lex ranges.antirez2014-04-171-15/+42
* ZLEXCOUNT implemented.antirez2014-04-163-0/+75
* More HyperLogLog tests.antirez2014-04-161-0/+76
* HyperLogLog invalid representation error code set to INVALIDOBJ.antirez2014-04-161-7/+7
* PFDEBUG TODENSE added.antirez2014-04-161-0/+15
* User-defined switch point between sparse-dense HLL encodings.antirez2014-04-165-6/+32
* PFSELFTEST improved with sparse encoding checks.antirez2014-04-161-4/+29
* PFDEBUG ENCODING added.antirez2014-04-161-0/+7
* Set HLL_SPARSE_MAX to 3000.antirez2014-04-161-1/+1
* Error message for invalid HLL objects unified.antirez2014-04-161-5/+7
* PFMERGE fixed to work with sparse encoding.antirez2014-04-162-10/+47
* Mark PFDEBUG as write command in the commands table.antirez2014-04-161-1/+1
* Correctly replicate PFDEBUG GETREG.antirez2014-04-161-3/+6
* Added assertion in hllSparseAdd() when promotion to dense occurs.antirez2014-04-161-1/+11
* hllSparseAdd(): speed optimization.antirez2014-04-161-12/+15
* Detect corrupted sparse HLLs in hllSparseSum().antirez2014-04-161-11/+18
* hllSparseAdd(): faster code removing conditional.antirez2014-04-161-5/+14