]> git.saurik.com Git - redis.git/commit - src/redis.h
Support for read-only slaves. Semantical fixes.
authorantirez <antirez@gmail.com>
Tue, 20 Mar 2012 16:32:48 +0000 (17:32 +0100)
committerantirez <antirez@gmail.com>
Thu, 22 Mar 2012 09:09:43 +0000 (10:09 +0100)
commit054061685add05f30722971537e084f0589b601d
treede8432d0df8e454ebf2199f13f0d9090ed5a311b
parent7c1cec25251eabb2e3e1259e2111fddb46ceb675
Support for read-only slaves. Semantical fixes.

This commit introduces support for read only slaves via redis.conf and CONFIG GET/SET commands. Also various semantical fixes are implemented here:

1) MULTI/EXEC with only read commands now work where the server is into a state where writes (or commands increasing memory usage) are not allowed. Before this patch everything inside a transaction would fail in this conditions.

2) Scripts just calling read-only commands will work against read only
slaves, when the server is out of memory, or when persistence is into an
error condition. Before the patch EVAL always failed in this condition.
redis.conf
src/config.c
src/multi.c
src/redis.c
src/redis.h
src/scripting.c