- 07 Mar, 2012 4 commits
-
-
antirez authored
Redis now refuses accepting write queries if RDB persistence is configured, but RDB snapshots can't be generated for some reason. The status of the latest background save operation is now exposed in the INFO output as well. This fixes issue #90.
-
antirez authored
Better MONITOR output, now includes client ip:port or the lua string if the command was executed by the scripting engine.
-
antirez authored
anetPeerToString() automatically populates ip/port with something that may be provided to the user as output in case of errors.
-
antirez authored
-
- 29 Feb, 2012 5 commits
- 28 Feb, 2012 6 commits
-
-
antirez authored
-
antirez authored
The new code uses a more generic data structure to describe redis operations. The new design allows for multiple alsoPropagate() calls within the scope of a single command, that is useful in different contexts. For instance there when there are multiple clients doing BRPOPLPUSH against the same list, and a variadic LPUSH is performed against this list, the blocked clients will both be served, and we should correctly replicate multiple LPUSH commands after the replication of the current command.
-
antirez authored
Added a new API to replicate an additional command after the replication of the currently executed command, in order to propagte the LPUSH originating from RPOPLPUSH and indirectly by BRPOPLPUSH.
-
antirez authored
-
antirez authored
-
antirez authored
-
- 26 Feb, 2012 3 commits
-
-
Jakub Wieczorek authored
-
Premysl Hruby authored
-
Premysl Hruby authored
-
- 24 Feb, 2012 1 commit
-
-
antirez authored
-
- 23 Feb, 2012 2 commits
- 22 Feb, 2012 4 commits
-
-
antirez authored
-
antirez authored
Fix for issue #306, thanks to tchajed (on github) for the pull request. The original patch was reworked a bit.
-
antirez authored
-
antirez authored
zzlIsInRange() now is capable of handling empty sorted sets that may end inside the data set when loading very old RDB files produced by early-stage versions of Redis.
-
- 21 Feb, 2012 4 commits
-
-
Pieter Noordhuis authored
-
Pieter Noordhuis authored
-
antirez authored
-
antirez authored
-
- 19 Feb, 2012 1 commit
-
-
antirez authored
-
- 16 Feb, 2012 3 commits
-
-
Pieter Noordhuis authored
The cron is responsible for expiring keys. When keys are expired at load time, it is possible that the snapshot of a master node gets modified. This can in turn lead to inconsistencies in the data set. A more concrete example of this behavior follows. A user reported a slave that would show an monotonically increase input buffer length, shortly after completing a SYNC. Also, `INFO` output showed a single blocked client, which could only be the master link. Investigation showed that indeed the `BRPOP` command was fed by the master. This command can only end up in the stream of write operations when it did NOT block, and effectively executed `RPOP`. However, when the key involved in the `BRPOP` is expired BEFORE the command is executed, the client executing it will block. The client in this case, is the master link.
-
antirez authored
-
antirez authored
-
- 15 Feb, 2012 1 commit
-
-
antirez authored
-
- 14 Feb, 2012 4 commits
- 13 Feb, 2012 1 commit
-
-
lsbardel authored
-
- 09 Feb, 2012 1 commit
-
-
antirez authored
-