summaryrefslogtreecommitdiff
path: root/redis.c
Commit message (Expand)AuthorAgeFilesLines
* Version is now 2.1.1v2.1.1-watchantirez2010-05-251-1/+1
* RENAME is now WATCH-awareantirez2010-05-251-0/+1
* WATCH is now able to detect keys removed by FLUSHALL and FLUSHDBantirez2010-05-251-0/+30
* minor bug fixed in WATCHantirez2010-05-251-0/+1
* WATCH for MULTI/EXEC (CAS alike concurrency)antirez2010-05-251-21/+161
* Master is now already unfreezed, unstable, and ready to hacking sessions!antirez2010-05-211-1/+1
* redis version is now 1.3.14 (aka 2.0.0 RC1)antirez2010-05-211-1/+1
* minor fix for the skiplist code, resulting in a false positive with valgrind,...antirez2010-05-211-1/+3
* fix memory leak on 32-bit buildsPieter Noordhuis2010-05-201-1/+1
* Fix for DEBUG DIGESTantirez2010-05-201-8/+12
* minor change to shutdownantirez2010-05-201-1/+1
* shutdown on SIGTERMantirez2010-05-201-14/+21
* Merge http://github.com/ngmoco/redisantirez2010-05-201-33/+52
|\
| * Add SIGTERM shutdown handling.Ashley Martens2010-05-131-33/+52
* | Merge branch 'master' into integrationPieter Noordhuis2010-05-191-41/+118
|\ \
| * | Fix for 'CONFIG SET appendonly no'antirez2010-05-191-2/+3
| * | It's now possible to turn off and on the AOF via CONFIGantirez2010-05-191-2/+81
| * | build fixed when simpler shells are used to create release.hantirez2010-05-181-1/+1
| * | create release.h in make process and add this information to INFO listingPieter Noordhuis2010-05-171-0/+5
| * | Redis version is now 1.3.12v1.3.12antirez2010-05-161-1/+1
| * | redis version is now 1.3.11antirez2010-05-161-1/+1
| * | random refactoring and speedupsantirez2010-05-161-34/+27
| * | faster INCR with very little efforts...antirez2010-05-161-2/+1
| * | fixed a warning seen with some GCC version under Linuxantirez2010-05-141-2/+2
* | | print warnings in redis log when a test raises an exception (very likely to b...Pieter Noordhuis2010-05-151-1/+1
|/ /
* | ZUNION,ZINTER -> ZUNIONSTORE,ZINTERSTOREantirez2010-05-141-8/+8
* | DEBUG DIGEST implemented, in order to improve the ability to test persistence...antirez2010-05-141-1/+187
|/
* conflicts resolvedantirez2010-05-131-48/+111
|\
| * feed SETEX as SET and EXPIREAT to AOFPieter Noordhuis2010-05-131-29/+44
| * swap arguments in blockClientOnSwappedKeys to be consistentPieter Noordhuis2010-05-071-3/+3
| * added function that preloads all keys needed to execute a MULTI/EXEC blockPieter Noordhuis2010-05-071-1/+28
| * add sanity check to zunionInterBlockClientOnSwappedKeys, as the number of key...Pieter Noordhuis2010-05-071-2/+4
| * make prototype of custom function to preload keys from the vm match the proto...Pieter Noordhuis2010-05-071-6/+10
| * extract preloading of multiple keys according to the command prototype to a s...Pieter Noordhuis2010-05-071-7/+14
| * make append only filename configurablePieter Noordhuis2010-05-071-0/+3
| * don't load value from VM for EXISTSPieter Noordhuis2010-05-071-1/+6
* | very strong speedup in saving time performance when there are many integers i...antirez2010-05-131-16/+40
* | include limits.h otherwise no double precison macrosantirez2010-05-131-2/+3
* | explicitly checks with ifdefs if our floating point and long long assumptions...antirez2010-05-131-0/+2
* | Yet another version of the double saving code, with comments explaining what'...antirez2010-05-131-1/+12
* | added overflow check in the double -> long long conversion trick to avoid int...antirez2010-05-121-1/+1
* | If a float can be casted to a long long without rounding loss, we can use the...antirez2010-05-121-1/+4
* | Merge branch 'vm-speedup'antirez2010-05-121-24/+76
|\ \
| * | load objects encoded from disk directly without useless conversionantirez2010-05-111-7/+22
| * | fixed a problem leading to crashes, as keys can't be currently specially enco...antirez2010-05-111-1/+1
| * | long long to string conversion speedup applied in other places as well. Still...antirez2010-05-111-21/+33
| * | hand written code to turn a long long into a string -> very big speed winantirez2010-05-111-2/+14
| * | added specialized function to compare string objects for perfect match that i...antirez2010-05-111-6/+19
| * | better use of encoding inforamtion in dictEncObjKeyCompareantirez2010-05-111-2/+2
* | | fix to return error when calling INCR on a non-string typePieter Noordhuis2010-05-111-2/+2
|/ /