- 02 Feb, 2012 4 commits
- 16 Jan, 2012 1 commit
-
-
Salvatore Sanfilippo authored
Don't expire keys when loading an RDB after a SYNC
-
- 14 Jan, 2012 1 commit
-
-
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.
-
- 12 Jan, 2012 2 commits
- 11 Jan, 2012 2 commits
- 10 Jan, 2012 1 commit
-
-
antirez authored
-
- 07 Jan, 2012 7 commits
-
-
antirez authored
Regression test for the main problem causing issue #141. Minor changes/fixes/additions to the test suite itself needed to write the test.
-
antirez authored
Redis test: when assertion fails print not just the expression but also expanded values in the error message.
-
antirez authored
-
antirez authored
Protections against protocol desyncs, leading to infinite query buffer growing, due to nul-terms in specific bytes of the request or indefinitely long multi bulk or bulk count strings without newlines. This bug is related to Issue #141 as well.
-
antirez authored
Fixed replication when multiple slaves are attaching at the same time. The output buffer was not copied correctly between slaves. This fixes issue #141.
-
antirez authored
-
antirez authored
-
- 23 Dec, 2011 3 commits
- 20 Dec, 2011 3 commits
- 19 Dec, 2011 3 commits
- 18 Dec, 2011 1 commit
-
-
antirez authored
-
- 01 Dec, 2011 1 commit
-
-
antirez authored
-
- 30 Nov, 2011 2 commits
- 28 Nov, 2011 2 commits
- 25 Nov, 2011 6 commits
- 24 Nov, 2011 1 commit
-
-
antirez authored
-