- 16 Jun, 2016 7 commits
-
-
Jan-Erik Rediger authored
-
antirez authored
Reference issue #3218. Checking the code I can't find a reason why the original RESTORE code was so opinionated about restoring only the current version. The code in to `rdb.c` appears to be capable as always to restore data from older versions of Redis, and the only places where it is needed the current version in order to correctly restore data, is while loading the opcodes, not the values itself as it happens in the case of RESTORE. For the above reasons, this commit enables RESTORE to accept older versions of values payloads.
-
oranagra authored
-
oranagra authored
-
antirez authored
Comment format fixed + local var modified from camel case to underscore separators as Redis code base normally does (camel case is mostly used for global symbols like structure names, function names, global vars, ...).
-
oranagra authored
optimization: lookup key only once, and grow at once to the max need fixes #3259 and #3221, and also an early return if wrongtype is discovered by SET
-
- 15 Jun, 2016 7 commits
- 14 Jun, 2016 1 commit
-
-
antirez authored
-
- 13 Jun, 2016 6 commits
-
-
antirez authored
Close #3266
-
antirez authored
I'm the author of this line but I can't see a good reason for it to don't be a typo, a step of 26 should be valid with 52 bits per coordinate, moreover the line was: if (step > 26) step = 25; So a step of 26 was actually already used, except when one of 27 was computed (which is invalid) only then it was trimmed to 25 instead of 26. All tests passing after the change.
-
antirez authored
Probably there is no compiler that will actaully break the code or raise a signal for unsigned -> signed overflowing conversion, still it was apparently possible to write it in a more correct way. All tests passing.
-
antirez authored
-
antirez authored
Thanks to @oranagra for noticing it was missing.
-
antirez authored
-
- 10 Jun, 2016 5 commits
-
-
Pierre Chapuis authored
-
antirez authored
-
andyli authored
-
bogdanvlviv authored
-
jspraul authored
Fix an MSYS2-build-breaking error: unknown type name ‘fd_set’
-
- 30 May, 2016 1 commit
-
-
Itamar Haber authored
The existing `R` flag appears to be sufficient and there's no apparent reason why the command should be blocked.
-
- 18 May, 2016 7 commits
- 08 May, 2016 2 commits
-
-
antirez authored
Use the COMMAND output to fill with partial information the built-in help. This makes redis-cli able to at least complete commands that are exported by the Redis server it is connected to, but were not available in the help.h file when the redis-cli binary was compiled.
-
Adam Baldwin authored
-
- 06 May, 2016 1 commit
-
-
antirez authored
-
- 05 May, 2016 3 commits