- 21 Nov, 2011 1 commit
-
-
antirez authored
code generating the CLIENT LIST output refactored to have a function that is able to render a single client into a client info string.
-
- 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 2 commits
- 20 Apr, 2011 1 commit
-
-
antirez authored
removed check for zmalloc return NULL in createClient(). The check was misplaced, and zmalloc never returns NULL.
-
- 15 Apr, 2011 1 commit
-
-
antirez authored
-
- 31 Mar, 2011 2 commits
- 20 Jan, 2011 1 commit
-
-
antirez authored
Fixed issue #435 and at the same time introduced explicit ping in the master-slave channel that will detect a blocked master or a broken even if apparently connected TCP link.
-
- 17 Jan, 2011 1 commit
-
-
Pieter Noordhuis authored
-
- 14 Jan, 2011 1 commit
-
-
antirez authored
-
- 05 Jan, 2011 1 commit
-
-
Pieter Noordhuis authored
-
- 01 Jan, 2011 1 commit
-
-
antirez authored
implemented a different approach to IO scheduling, so object->storage is no longer used, instead there is a queue and hash table of IO tasks to process, and it is always possible to know what are the scheduled and acrtive IO operations against every single key.
-
- 30 Dec, 2010 1 commit
-
-
antirez authored
-