- 13 Apr, 2012 2 commits
-
-
antirez authored
After considering the interaction between ability to delcare globals in scripts using the 'global' function, and the complexities related to hanlding replication and AOF in a sane way with globals AND ability to turn protection On and Off, we reconsidered the design. The new design makes clear that there is only one good way to write Redis scripts, that is not using globals. In the rare cases state must be retained across calls a Redis key can be used.
-
antirez authored
-
- 21 Mar, 2012 1 commit
-
-
antirez authored
-
- 20 Mar, 2012 1 commit
-
-
antirez authored
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.
-
- 10 Mar, 2012 1 commit
-
-
quiver authored
-
- 07 Mar, 2012 1 commit
-
-
antirez authored
By default Redis refuses writes with an error if the latest BGSAVE failed (and at least one save point is configured). However people having good monitoring systems may prefer a server that continues to work, since they are notified that there are problems by their monitoring systems. This commit implements the ability to turn the feature on or off via redis.conf and CONFIG SET.
-
- 07 Feb, 2012 2 commits
- 25 Jan, 2012 1 commit
-
-
Pieter Noordhuis authored
-
- 24 Jan, 2012 2 commits
- 16 Jan, 2012 1 commit
-
-
antirez authored
It is now posible to flush all the previous saving points in redis.conf by using a save directive with a single empty string argument, like it happens for CONFIG SET save.
-
- 28 Dec, 2011 1 commit
-
-
Kashif Rasul authored
-
- 22 Dec, 2011 1 commit
-
-
diegok authored
-
- 30 Nov, 2011 1 commit
-
-
antirez authored
-
- 21 Nov, 2011 1 commit
-
-
Jérémy Bethmont authored
-
- 18 Nov, 2011 1 commit
-
-
antirez authored
-
- 31 Oct, 2011 5 commits
-
-
antirez authored
-
antirez authored
-
Herbert G. Fischer authored
-
antirez authored
-
antirez authored
maxclients configuration is now implemented dealing with the actual process rlimits. Setting maxclients to 0 no longer makes sense and is now invalid, the new default is 10000. See issue #162 for more information.
-
- 27 Oct, 2011 1 commit
-
-
antirez authored
If a Lua script executes for more time than the max time specified in the configuration Redis will log a warning, and will start accepting queries (re-entering the event loop), returning -SLOWSCRIPT error for all the commands but SHUTDOWN that remains callable.
-
- 10 Oct, 2011 1 commit
-
-
Nathan Florea authored
Added a configuration directive to allow a user to specify the permissions to be granted to the Unix socket file. I followed the format Pieter and Salvatore discusses in issue #85 ( https://github.com/antirez/redis/issues/85).
-
- 28 Sep, 2011 1 commit
-
-
antirez authored
-
- 03 Jul, 2011 1 commit
-
-
antirez authored
-
- 30 Jun, 2011 2 commits
- 25 Jun, 2011 1 commit
-
-
antirez authored
-
- 10 Jun, 2011 1 commit
-
-
antirez authored
-
- 25 May, 2011 1 commit
-
-
antirez authored
-
- 09 Mar, 2011 1 commit
-
-
Pieter Noordhuis authored
-
- 07 Feb, 2011 1 commit
-
-
antirez authored
-
- 15 Jan, 2011 1 commit
-
-
antirez authored
-
- 05 Jan, 2011 1 commit
-
-
Pieter Noordhuis authored
-
- 31 Dec, 2010 1 commit
-
-
antirez authored
-
- 14 Dec, 2010 1 commit
-
-
antirez authored
special encoding limits redefined, and all the config options for special encodings added in the example redis.conf file
-
- 09 Dec, 2010 1 commit
-
-
Jonah H. Harris authored
-
- 08 Nov, 2010 1 commit
-
-
antirez authored
added noeviction policy to redis maxmemory. ZSCORE removed from the list of commands that can't be called when we are low on memory, this command was added in the past for a stupid error.
-
- 04 Nov, 2010 1 commit
-
-
antirez authored
-