summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* 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-162-35/+27
* faster INCR with very little efforts...antirez2010-05-161-2/+1
* Merge branch 'redis-cli-fix' of http://github.com/tizoc/redisantirez2010-05-151-4/+9
|\
| * Don't rely on cliReadReply being able to return on shutdownBruno Deferrari2010-05-141-4/+9
* | added pid info to the check memory leaks test, so that those tests don't appe...antirez2010-05-151-1/+1
* | Merge branch 'integration' of git://github.com/pietern/redisantirez2010-05-154-20/+93
|\ \
| * | initial rough integration test for replicationPieter Noordhuis2010-05-143-0/+43
| * | store entire server object on the stack instead of just the clientPieter Noordhuis2010-05-142-16/+41
| * | proc to retrieve values from INFO propertiesPieter Noordhuis2010-05-141-4/+9
* | | more endianess detection fix for SHA1antirez2010-05-141-1/+1
* | | fixed a warning seen with some GCC version under Linuxantirez2010-05-141-2/+2
|/ /
* | one more fix for endianess detectionantirez2010-05-141-2/+0
* | Fixed sha1.c compilation on Linux, due to endianess detection lamenessantirez2010-05-141-1/+11
* | ZUNION,ZINTER -> ZUNIONSTORE,ZINTERSTOREantirez2010-05-148-38/+87
* | minor fixes to the new test suite, html doc updatedantirez2010-05-1441-100/+102
* | wait for redis-server to be settled and ready for connectionsPieter Noordhuis2010-05-141-2/+10
* | fix cleaning up tmp folderPieter Noordhuis2010-05-141-1/+2
* | update makefile to use the new test suitePieter Noordhuis2010-05-141-4/+2
* | check for memory leaks before killing a serverPieter Noordhuis2010-05-141-0/+9
* | extract code to kill a server to a separate procPieter Noordhuis2010-05-141-20/+23
* | start servers on different ports to prevent conflictsPieter Noordhuis2010-05-142-1/+4
* | use DEBUG DIGEST in new test suitePieter Noordhuis2010-05-142-45/+3
* | split test suite into multiple files; runs redis-server in isolationPieter Noordhuis2010-05-1418-0/+2741
* | use DEBUG DIGEST in the test instead of a function that was doing a similar w...antirez2010-05-141-39/+1
|/
* If command is a shutdown, ignore errors on replyBruno Deferrari2010-05-141-1/+4
* DEBUG DIGEST implemented, in order to improve the ability to test persistence...antirez2010-05-144-3/+471
* makefile deps updatedantirez2010-05-131-1/+5
* conflicts resolvedantirez2010-05-133-52/+116
|\
| * feed SETEX as SET and EXPIREAT to AOFPieter Noordhuis2010-05-131-29/+44
| * change command names no longer used to zunion/zinterPieter Noordhuis2010-05-071-2/+2
| * update TODOPieter Noordhuis2010-05-071-1/+0
| * 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-072-2/+6
| * don't load value from VM for EXISTSPieter Noordhuis2010-05-072-2/+6
* | very strong speedup in saving time performance when there are many integers i...antirez2010-05-132-29/+42
* | 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
* | use withscores when performing the dataset digestantirez2010-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
* | fixed compilation warnings in the AOF sanity check toolantirez2010-05-121-0/+1
* | Merge branch 'vm-speedup'antirez2010-05-123-24/+92
|\ \
| * | load objects encoded from disk directly without useless conversionantirez2010-05-111-7/+22