summaryrefslogtreecommitdiff
path: root/redis.conf
Commit message (Collapse)AuthorAgeFilesLines
* Sentinel: added documentation about slave-priority in redis.confantirez2012-08-281-0/+15
|
* Limit memory used by big SLOWLOG entries.antirez2012-04-211-1/+1
| | | | | | | | | | | Two limits are added: 1) Up to SLOWLOG_ENTRY_MAX_ARGV arguments are logged. 2) Up to SLOWLOG_ENTRY_MAX_STRING bytes per argument are logged. 3) slowlog-max-len is set to 128 by default (was 1024). The number of remaining arguments / bytes is logged in the entry so that the user can understand better the nature of the logged command.
* redis.conf AOF section comments improved.antirez2012-04-201-16/+21
|
* It is now possible to enable/disable RDB checksum computation from ↵antirez2012-04-101-0/+9
| | | | redis.conf or via CONFIG SET/GET. Also CONFIG SET support added for rdbcompression as well.
* Comments about security of slave-read-only in redis.coinf.antirez2012-03-211-1/+9
|
* Support for read-only slaves. Semantical fixes.antirez2012-03-201-0/+8
| | | | | | | | | | 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.
* fix typo of redis.confquiver2012-03-101-1/+1
|
* Merge conflicts resolved.antirez2012-03-091-6/+5
|\
| * Update default configurationPieter Noordhuis2012-01-251-6/+5
| |
* | By default Redis refuses writes with an error if the latest BGSAVE failed ↵antirez2012-03-071-0/+15
| | | | | | | | (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.
* | more practical maxmemory+slaves hint in redis.confantirez2012-02-081-0/+4
| |
* | redis.conf updated with new maxmemory semanticsantirez2012-02-081-15/+17
| |
* | redis.conf typo fixed in the client-output-buffer-limit documentationantirez2012-01-241-1/+1
| |
* | client-output-buffer-limit documented in redis.confantirez2012-01-241-0/+37
| |
* | Merge remote-tracking branch 'origin/unstable' into unstableantirez2012-01-161-11/+11
|\ \
| * | Fixed some typos in redis.conf.Kashif Rasul2011-12-281-11/+11
| |/
* | It is now posible to flush all the previous saving points in redis.conf by ↵antirez2012-01-161-0/+6
|/ | | | using a save directive with a single empty string argument, like it happens for CONFIG SET save.
* Fixed a config docs typo.diegok2011-12-221-1/+1
|
* default log level is now notice.antirez2011-11-301-1/+1
|
* Fixed a typo in comments.Jérémy Bethmont2011-11-211-1/+1
|
* redis.conf updated to reflect the new scripting timeout semantics.antirez2011-11-181-2/+6
|
* use timeout 0 by default, as this is a common source of problems.antirez2011-10-311-1/+1
|
* added more clarifications in redis.conf about ther right value to set as ↵antirez2011-10-311-0/+4
| | | | replication timeout.
* fixed typo in commentsHerbert G. Fischer2011-10-311-2/+2
|
* 7c6da73antirez2011-10-311-0/+11
|
* maxclients configuration is now implemented dealing with the actual process ↵antirez2011-10-311-4/+7
| | | | | | rlimits. Setting maxclients to 0 no longer makes sense and is now invalid, the new default is 10000. See issue #162 for more information.
* If a Lua script executes for more time than the max time specified in the ↵antirez2011-10-271-3/+10
| | | | 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.
* Added a config directive for a Unix socket maskNathan Florea2011-10-101-0/+1
| | | | | | | 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).
* cluster config file entries added to the example configuration fileantirez2011-09-281-0/+19
|
* master branch merged into scripting.antirez2011-07-121-0/+24
|\
| * Fixed typo in redis.conf related to slow log parametersantirez2011-07-031-1/+1
| |
| * More redis.conf self-documentation. Now even queries that took exactly ↵antirez2011-06-301-0/+6
| | | | | | | | server.slow_log_slower_than are logged, as this is not exact but is more intuitive for people, and a value of 0 will force every query to be logged.
| * slow log configuration implementedantirez2011-06-301-0/+18
| |
* | unstable merge conflicts resolvedantirez2011-06-251-26/+0
|\ \ | |/
| * diskstore removedantirez2011-06-251-26/+0
| |
* | Updated to unstableantirez2011-06-141-0/+20
|\ \ | |/
| * automatic AOF rewrite first implementation. Still to be tested.antirez2011-06-101-0/+20
| |
* | Lua scripts max execution timeantirez2011-05-251-0/+7
|/
* Configurable thresholds for encoded sorted setsPieter Noordhuis2011-03-091-0/+6
|
* If port zero is specified, Redis will not listen for TCP connectionsantirez2011-02-071-0/+1
|
* default hash encoding settings also fixed in redis.confantirez2011-01-151-2/+2
|
* Remove glueoutputbuf from redis.confPieter Noordhuis2011-01-051-5/+0
|
* minor changes to doc and commentsantirez2010-12-311-71/+25
|
* special encoding limits redefined, and all the config options for special ↵antirez2010-12-141-0/+13
| | | | encodings added in the example redis.conf file
* syslog supportJonah H. Harris2010-12-091-0/+10
|
* added noeviction policy to redis maxmemory. ZSCORE removed from the list of ↵antirez2010-11-081-0/+12
| | | | commands that can't be called when we are low on memory, this command was added in the past for a stupid error.
* config option to select if when replication link with master a slave should ↵antirez2010-11-041-0/+13
| | | | or not serve stale data
* added support for command renaming/suppression in redis.confantirez2010-11-031-0/+16
|
* Merge remote branch 'pietern/unixsocket'antirez2010-11-021-1/+7
|\
| * Remove disabling TCP with port -1Pieter Noordhuis2010-10-131-1/+0
| |