- 31 May, 2013 1 commit
-
-
antirez authored
-
- 30 May, 2013 2 commits
-
-
antirez authored
This way just after the CONFIG SET enabling the min-slaves feature it is possible to write to the database without delays.
-
antirez authored
This feature allows the user to specify the minimum number of connected replicas having a lag less or equal than the specified amount of seconds for writes to be accepted.
-
- 18 May, 2013 1 commit
-
-
antirez authored
Should be "continue" and was "return". This fixes issue #1110
-
- 15 May, 2013 9 commits
-
-
antirez authored
-
antirez authored
-
antirez authored
-
antirez authored
-
antirez authored
-
antirez authored
-
antirez authored
-
antirez authored
-
antirez authored
Also the logfile option was modified to always have an explicit value and to log to stdout when an empty string is used as log file. Previously there was special handling of the string "stdout" that set the logfile to NULL, this always required some special handling.
-
- 14 May, 2013 4 commits
- 13 May, 2013 4 commits
- 02 May, 2013 2 commits
-
-
antirez authored
This is just to make the code exactly like the above instance used for requirepass. No actual change nor the original code violated the Redis coding style.
-
Michel Martens authored
-
- 24 Apr, 2013 1 commit
-
-
antirez authored
-
- 09 Apr, 2013 1 commit
-
-
antirez authored
-
- 04 Apr, 2013 2 commits
- 14 Mar, 2013 1 commit
-
-
NanXiao authored
Fix bug in configGetCommand function: get correct masterauth value.
-
- 06 Mar, 2013 3 commits
- 05 Mar, 2013 1 commit
-
-
antirez authored
-
- 25 Feb, 2013 1 commit
-
-
Arnaud Granal authored
The parameter repl-backlog-size is not parsed correctly in the configuration file. argv[0] is parsed instead of argv[1].
-
- 14 Feb, 2013 2 commits
- 12 Feb, 2013 2 commits
- 08 Feb, 2013 1 commit
-
-
antirez authored
-
- 05 Feb, 2013 2 commits
-
-
antirez authored
-
charsyam authored
Further details from @antirez: It was reported by @StopForumSpam on Twitter that the Redis replication link was strangely using multiple TCP packets for multiple commands. This wastes a lot of bandwidth and is due to the TCP_NODELAY option we enable on the socket after accepting a new connection. However the master -> slave channel is a one-way channel since Redis replication is asynchronous, so there is no point in trying to reduce the latency, we should aim to reduce the bandwidth. For this reason this commit introduces the ability to disable the nagle algorithm on the socket after a successful SYNC. This feature is off by default because the delay can be up to 40 milliseconds with normally configured Linux kernels.
-