- 23 Apr, 2012 5 commits
-
-
antirez authored
-
Salvatore Sanfilippo authored
Added consts keyword where possible
-
Salvatore Sanfilippo authored
Replace some unnecessary calls to echo and cat in tests
-
antirez authored
-
antirez authored
-
- 21 Apr, 2012 6 commits
-
-
antirez authored
-
antirez authored
-
antirez authored
Two limits are added: 1) Up to SLOWLOG_ENTRY_MAX_ARGV arguments are logged. 2) Up to SLOWLOG_ENTRY_MAX_STRING bytes per argument are logged. 3) slowlog-max-len is set to 128 by default (was 1024). The number of remaining arguments / bytes is logged in the entry so that the user can understand better the nature of the logged command.
-
Salvatore Sanfilippo authored
Fixed some spelling errors in comments
-
Salvatore Sanfilippo authored
fix typos in tests/assets/default.conf
-
antirez authored
-
- 19 Apr, 2012 3 commits
- 18 Apr, 2012 17 commits
-
-
antirez authored
-
antirez authored
-
antirez authored
-
antirez authored
-
antirez authored
-
antirez authored
-
antirez authored
-
antirez authored
-
antirez authored
-
antirez authored
-
antirez authored
-
antirez authored
-
antirez authored
-
Salvatore Sanfilippo authored
Persist Makefile flags (unstable)
-
antirez authored
just fieldobj itself as sentinel of the fact a field object is used or not, instead of using the filed length, that may be confusing both for people and for the compiler emitting a warning.
-
antirez authored
-
antirez authored
1) Don't accept maxclients set to < 0 2) Allow maxclients < 1024, it is useful for testing.
-
- 17 Apr, 2012 4 commits
-
-
Michael Schlenker authored
Tcl's exec can send data to stdout itself, no need to call cat/echo for that usually.
-
antirez authored
-
antirez authored
lookupKeyByPattern() was implemented with a trick to speedup the lookup process allocating two fake Redis obejcts on the stack. However now that we propagate expires to the slave as DEL operations the lookup of the key may result into a call to expireIfNeeded() having the stack allocated object as argument, that may in turn use it to create the protocol to send to the slave. But since this fake obejcts are inherently read-only this is a problem. As a side effect of this fix there are no longer size limits in the pattern to be used with GET/BY option of SORT. See https://github.com/antirez/redis/issues/460 for bug details.
-
antirez authored
-
- 14 Apr, 2012 5 commits
-
-
Pieter Noordhuis authored
-
Pieter Noordhuis authored
-
Pieter Noordhuis authored
-
Pieter Noordhuis authored
-
Pieter Noordhuis authored
-