- 21 Dec, 2011 1 commit
-
-
antirez authored
-
- 19 Dec, 2011 1 commit
-
-
antirez authored
Fixed memleak in CLIENT INFO, added simple test that will work as regression test on mac os x and in the CI when running over valgrind. This fixes issue #256
-
- 28 Nov, 2011 1 commit
-
-
antirez authored
-
- 25 Nov, 2011 1 commit
-
-
antirez authored
-
- 24 Nov, 2011 2 commits
- 23 Nov, 2011 1 commit
-
-
antirez authored
new counter in INFO output: rejected_connections with number of dropped connections because of maxclients limit reached.
-
- 21 Nov, 2011 5 commits
- 08 Nov, 2011 3 commits
- 04 Nov, 2011 2 commits
- 03 Nov, 2011 1 commit
-
-
antirez authored
further optimizations for the multi bulk protocol parsing code when big objects are transmitted to Redis.
-
- 02 Nov, 2011 2 commits
- 31 Oct, 2011 1 commit
-
-
antirez authored
maxclients configuration is now implemented dealing with the actual process rlimits. Setting maxclients to 0 no longer makes sense and is now invalid, the new default is 10000. See issue #162 for more information.
-
- 17 Oct, 2011 1 commit
-
-
antirez authored
-
- 04 Oct, 2011 1 commit
-
-
antirez authored
-
- 12 Sep, 2011 1 commit
-
-
antirez authored
Remove the write handler only if there are no longer objects in the output queue AND if the static buffer is empty. This bug was the cause of a possible server-stop-responding-to-client bug under some specific work load. Thanks to Pieter Noordhuis for spotting and fixing it.
-
- 28 Jul, 2011 1 commit
-
-
Hampus Wessman authored
-
- 13 Jul, 2011 1 commit
-
-
antirez authored
-
- 08 Jul, 2011 1 commit
-
-
antirez authored
Take a pointer to the relevant entry of the command table in the client structure. This is generally a more sounding design, simplifies a few functions prototype, and as a side effect fixes a bug related to the conversion of EXPIRE -1 to DEL: before of this fix Redis tried to convert it into an EXPIREAT in the AOF code, regardless of our rewrite of the command.
-
- 25 Jun, 2011 1 commit
-
-
antirez authored
-
- 20 Jun, 2011 1 commit
-
-
antirez authored
-
- 17 Jun, 2011 1 commit
-
-
antirez authored
-
- 25 May, 2011 4 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
when creating not connected clients do not add them into the clients list, otherwise they will be subject to timeouts and other stuff
-
antirez authored
Correctly glue the reply buffer. For now returned as it is to Lua, but will be converted into Lua native type later.
-
antirez authored
Lua call of Redis command work in progress: sorry I have to go to the cinema to watch the Source Code movie
-
- 07 May, 2011 1 commit
-
-
antirez authored
when Redis fails accepting a new connection reports the error at WARNING and not VERBOSE error level. Thanks to offby1 for proposing this in the Redis mailing list. #backport-candidate
-
- 05 May, 2011 3 commits
-
-
Pieter Noordhuis authored
-
Pieter Noordhuis authored
-
Pieter Noordhuis authored
-
- 29 Apr, 2011 1 commit
-
-
antirez authored
Fixed a bug with replication where SLAVEOF NO ONE caused a slave to close the connection with its slaves
-
- 21 Apr, 2011 1 commit
-
-
antirez authored
-