- 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
-
- 28 Dec, 2010 2 commits
- 15 Dec, 2010 1 commit
-
-
antirez authored
-
- 07 Dec, 2010 1 commit
-
-
antirez authored
LRANGE converted into a COW friendly command. Some refactoring, comment, and new addReply*() family function added in the process.
-
- 30 Nov, 2010 2 commits
-
-
Damian Janowski & Michel Martens authored
-
Damian Janowski & Michel Martens authored
-
- 04 Nov, 2010 1 commit
-
-
antirez authored
first attempt to non blocking implementation of slave replication and SYNC bulk data download. Never compiled so far...
-
- 28 Oct, 2010 3 commits
-
-
Pieter Noordhuis authored
-
Pieter Noordhuis authored
-
Pieter Noordhuis authored
-
- 15 Oct, 2010 3 commits
-
-
Pieter Noordhuis authored
-
Pieter Noordhuis authored
-
Pieter Noordhuis authored
-
- 13 Oct, 2010 1 commit
-
-
Pieter Noordhuis authored
-