- 14 May, 2010 4 commits
-
-
Pieter Noordhuis authored
-
antirez authored
use DEBUG DIGEST in the test instead of a function that was doing a similar work, but in a much slower and buggy way
-
Bruno Deferrari authored
-
antirez authored
DEBUG DIGEST implemented, in order to improve the ability to test persistence and replication consistency
-
- 13 May, 2010 7 commits
-
-
antirez authored
-
antirez authored
-
Pieter Noordhuis authored
-
antirez authored
very strong speedup in saving time performance when there are many integers in the dataset. Instead of decoding the object before to pass them to the rdbSaveObject layer we check asap if the object is integer encoded and can be written on disk as an integer.
-
antirez authored
-
antirez authored
-
antirez authored
-
- 12 May, 2010 5 commits
-
-
antirez authored
added overflow check in the double -> long long conversion trick to avoid integer overflows. I think this was not needed in practical terms, but it is safer
-
antirez authored
-
antirez authored
If a float can be casted to a long long without rounding loss, we can use the integer conversion function to write the score on disk. This is a seriuous speedup
-
antirez authored
-
antirez authored
-
- 11 May, 2010 7 commits
-
-
Pieter Noordhuis authored
-
antirez authored
-
antirez authored
fixed a problem leading to crashes, as keys can't be currently specially encoded, so we can't encode integers at object loading time... For now this can be fixed passing a few flags, or later can be fixed allowing encoded keys as well
-
antirez authored
long long to string conversion speedup applied in other places as well. Still the code has bugs, fixing right now...
-
antirez authored
-
antirez authored
added specialized function to compare string objects for perfect match that is optimized for this task
-
antirez authored
-
- 10 May, 2010 4 commits
-
-
antirez authored
-
antirez authored
-
antirez authored
while loading the rdb file don't add the key to the dictionary at all if it's already expired, instead of removing it just after the insertion.
-
git://github.com/pietern/redisantirez authored
-
- 08 May, 2010 2 commits
- 07 May, 2010 11 commits
-
-
Pieter Noordhuis authored
-
antirez authored
-
Pieter Noordhuis authored
-
Pieter Noordhuis authored
-
Pieter Noordhuis authored
-
Pieter Noordhuis authored
add sanity check to zunionInterBlockClientOnSwappedKeys, as the number of keys used is provided as argument to the function
-
Pieter Noordhuis authored
make prototype of custom function to preload keys from the vm match the prototype of waitForMultipleSwappedKeys
-
Pieter Noordhuis authored
-
Pieter Noordhuis authored
-
Pieter Noordhuis authored
-
antirez authored
-