- 12 Jun, 2011 1 commit
-
-
Hampus Wessman authored
Slight adjustment in growth calculation.
-
- 10 Jun, 2011 11 commits
- 09 Jun, 2011 2 commits
-
-
Hampus Wessman authored
echo with escape sequences isn't portable. Use printf instead.
-
antirez authored
Two fixes for replication: Slave performs the AOF rewrite at the right point. Non blocking connect also uses readable handler as with old Linux kernels like 2.6.18 on connection refused the writable even is not fired (kernel bug).
-
- 08 Jun, 2011 1 commit
-
-
antirez authored
-
- 03 Jun, 2011 1 commit
-
-
antirez authored
-
- 01 Jun, 2011 3 commits
-
-
Pieter Noordhuis authored
-
Pieter Noordhuis authored
-
Pieter Noordhuis authored
-
- 31 May, 2011 3 commits
- 30 May, 2011 1 commit
-
-
Pieter Noordhuis authored
-
- 29 May, 2011 1 commit
-
-
antirez authored
INFO now contains the time (in usecs) needed to fork() in order to persist. The info is available in the stats section of INFO.
-
- 28 May, 2011 4 commits
-
-
antirez authored
redis-cli: -i (interval) implemented, to wait the specified number of seconds (decimal digits are allowed) between commands.
-
antirez authored
-
antirez authored
redis-cli in REPL mode is now able to send the same command multiple times, prefixing the command with a number as in "10 ping"
-
antirez authored
redis-cli no longer aborts in repl-mode on error, and retries to reconncet with the server at every command issued if the state is not connected. Also the prompt shows the server we are connected to.
-
- 25 May, 2011 12 commits
-
-
antirez authored
Make sure error and status replies emitted by Lua scripts can never have more than a newline, otherwise it is a protocol violation and clients will desync.
-
antirez authored
-
antirez authored
All commands exported by Redis to Lua scripts are now inside the redis table. Implemented redis.log() function.
-
antirez authored
-
antirez authored
Now it is possible to return multi bulks of multi bulks from Lua, just returning tables of tables. The new conversion of the Null bulk and multi bulk type is the Lua false type.
-
antirez authored
-
antirez authored
Lua max exec time fixes: redisLog() to log the event moved before the lua_error() call that does a long jump so never returns. Aesthetic fixes in error message.
-
antirez authored
call the Lua hook with minor frequency. It is already enough to call it every 100000 istructions for near millisecond precision.
-
antirez authored
-
antirez authored
-
antirez authored
-
antirez authored
-