- 16 Jun, 2016 4 commits
-
-
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 6 commits
-
-
antirez authored
-
antirez authored
-
Ruben Bridgewater authored
-
Daniel Shih authored
connection to master/slave/sentinel decames disconnected just after the last PONG and before the next PING.
-
Jan-Erik Rediger authored
1 microsecond = 1000 nanoseconds 1e3 = 1000 10e3 = 10000
-