summaryrefslogtreecommitdiff
path: root/redis.conf
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'unstable' of github.com:/antirez/redis into unstableantirez2015-04-271-1/+1
|\
| * Added reference to IANA ticket for port 6379Itamar Haber2015-04-241-1/+1
| | | | | | Just so it's extra official :smile:
* | Example redis.conf doc about pidfile fixed.antirez2015-04-261-2/+9
|/ | | | An user changed the behavior via a PR without upgrading the doc.
* Give obvious instructions on how to bind all interfaces.antirez2015-02-191-0/+3
|
* Example redis.conf binds just to 127.0.0.1.antirez2015-02-191-28/+42
| | | | | | | | | | | | | | It's hard to pick a good approach here. A few arguments: 1) There are many exposed instances on the internet. 2) Changing the default when "bind" is not given is very dangerous, after an upgrade the server changes a fundamental behavior. 3) Usually Redis, when used in a proper way, will be protected *and* accessed often from other computers, so this new default is likely not what most people want. 4) However if users end with this default, they are using the example redis.conf: likely they are reading what is inside, and they'll see the warning.
* Unify to uppercase the headlineMasahiko Sawada2015-02-121-1/+1
|
* Supervise redis processes only if configuredMatt Stancliff2015-01-091-0/+11
| | | | | | | | | | | Adds configuration option 'supervised [no | upstart | systemd | auto]' Also removed 'bzero' from the previous implementation because it's 2015. (We could actually statically initialize those structs, but clang throws an invalid warning when we try, so it looks bad even though it isn't bad.) Fixes #2264
* Advertise Redis Cluster as experimental in redis.conf.antirez2015-01-081-0/+6
|
* Config: Add quicklist, remove old list optionsMatt Stancliff2015-01-021-5/+30
| | | | | | | | | | | | | This removes: - list-max-ziplist-entries - list-max-ziplist-value This adds: - list-max-ziplist-size - list-compress-depth Also updates config file with new sections and updates tests to use quicklist settings instead of old list settings.
* Merge pull request #2117 from mariano-perez-rodriguez/patch-4Salvatore Sanfilippo2014-12-111-2/+2
|\ | | | | Typo fixes in redis.conf
| * Typo fixes in redis.confMariano Pérez Rodríguez2014-10-311-2/+2
| | | | | | | | | | | | Fix two typos in redis.conf: - "trnasfers" --> "transfers" - "enalbed" --> "enabled"
* | Mark diskless replication as experimental in redis.conf.antirez2014-12-021-0/+4
|/
* Document repl-diskless-sync-delay in redis.conf.antirez2014-10-271-0/+12
|
* Diskless replication documented inside example redis.conf.antirez2014-10-241-0/+27
|
* redis.conf small grammar fixMiguel Parramon2014-09-291-1/+1
| | | | | | :smile: Closes #2034
* Clean up text throughout projectMatt Stancliff2014-09-291-12/+12
| | | | | | | | | | - Remove trailing newlines from redis.conf - Fix comment misspelling - Clarifies zipEncodeLength usage and a C API mention (#1243, #1242) - Fix cluster typos (inspired by @papanikge #1507) - Fix rewite -> rewrite in a few places (inspired by #682) Closes #1243, #1242, #1507
* Grammar and typo fixes in redis.confBen2014-09-291-17/+16
| | | | Closes #1441
* Fix typo in redis.confJan-Erik Rediger2014-09-291-1/+1
| | | | Closes #1713
* Improve disable save comment in redis.confManuel Meurer2014-09-291-1/+1
| | | | Closes #1897
* Cluster: new option to work with partial slots coverage.antirez2014-09-171-0/+13
|
* Make aof-load-truncated option actually configurable.antirez2014-09-081-0/+24
|
* Change unixsocketperm comment to 700 from 755Edgars Irmejs2014-08-071-1/+1
| | | | | | | | According to unix manuals, "Connecting to the socket object requires read/write permission." -- mode 755 is useless for anybody other than the owner. Fixes #1696
* * fixed doc URL for keyspace eventsvps2014-07-281-1/+1
|
* Example redis.conf: improve slaveof description.antirez2014-07-251-3/+12
|
* Latency monitor trheshold value is now configurable.antirez2014-07-021-0/+21
| | | | This commit adds both support for redis.conf and CONFIG SET/GET.
* Client types generalized.antirez2014-06-161-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | Because of output buffer limits Redis internals had this idea of type of clients: normal, pubsub, slave. It is possible to set different output buffer limits for the three kinds of clients. However all the macros and API were named after output buffer limit classes, while the idea of a client type is a generic one that can be reused. This commit does two things: 1) Rename the API and defines with more general names. 2) Change the class of clients executing the MONITOR command from "slave" to "normal". "2" is a good idea because you want to have very special settings for slaves, that are not a good idea for MONITOR clients that are instead normal clients even if they are conceptually slave-alike (since it is a push protocol). The backward-compatibility breakage resulting from "2" is considered to be minimal to care, since MONITOR is a debugging command, and because anyway this change is not going to break the format or the behavior, but just when a connection is closed on big output buffer issues.
* Cluster: slave validity factor is now user configurable.antirez2014-05-221-0/+45
| | | | Check the commit changes in the example redis.conf for more information.
* Fixed typos.Kevin Menard2014-04-231-2/+2
|
* User-defined switch point between sparse-dense HLL encodings.antirez2014-04-151-0/+14
|
* The default maxmemory policy is now noeviction.antirez2014-03-211-1/+1
| | | | | | This is safer as by default maxmemory should just set a memory limit without any key to be deleted, unless the policy is set to something more relaxed.
* Default LRU samples is now 5.antirez2014-03-201-5/+8
|
* Redis.conf comment about tcp-backlog option improved.antirez2014-01-311-1/+7
|
* Option "backlog" renamed "tcp-backlog".antirez2014-01-311-1/+1
| | | | | This is especially important since we already have a concept of backlog (the replication backlog).
* Add support for listen(2) backlog definitionNenad Merdanovic2014-01-311-0/+3
| | | | | | In high RPS environments, the default listen backlog is not sufficient, so giving users the power to configure it is the right approach, especially since it requires only minor modifications to the code.
* Cluster: fix an error in migration-barrier comment in redis.conf.antirez2014-01-311-1/+1
|
* Cluster: barrer -> barrier in redis.conf.antirez2014-01-311-1/+1
|
* Cluster: configurable replicas migration barrier.antirez2014-01-311-0/+19
| | | | | | It is possible to configure the min number of additional working slaves a master should be left with, for a slave to migrate to an orphaned master.
* Clarify include directive behavior in example redis.conf.antirez2013-12-191-2/+6
|
* CONFIG REWRITE: don't throw some options on config rewriteYubao Liu2013-12-191-10/+17
| | | | | | Those options will be thrown without this patch: include, rename-command, min-slaves-to-write, min-slaves-max-lag, appendfilename.
* Example redis.conf formatted to better show appendfilename option.antirez2013-12-191-1/+3
|
* fix typo in redis.conf and sentinel.confYubao Liu2013-12-111-1/+1
|
* Fixed typo in redis.conf.antirez2013-12-061-1/+1
|
* fixed typoAnurag Ramdasan2013-12-051-1/+1
|
* Fixed grammar: 'usually' to 'usual'Anurag Ramdasan2013-12-051-1/+1
|
* Fixed typos in redis.conf file.antirez2013-12-051-8/+8
|
* Cluster: example redis.conf updated from sec to ms for cluster-node-timeout.antirez2013-10-091-3/+3
|
* Revert "Document port6 and bind6 config options."antirez2013-07-081-2/+0
| | | | | | | | | IPv6 support is not going to use IPv6 specific options, just it will be possible to specify all the ipv4 / ipv6 addresses of the interfaces to bind, otherwise connections will be accepted from all the interfaces in both IPv4 and IPv6 addresses. This reverts commit 93570e179e96dc096b85aa0fcd5021b05208594a.
* Document port6 and bind6 config options.Geoff Garside2013-07-081-0/+2
| | | | Add commented port6 and bind6 options to default redis.conf file.
* Example redis.conf: bind to multiple interfaces documented.antirez2013-07-081-2/+7
|
* min-slaves-to-write: don't accept writes with less than N replicas.antirez2013-05-301-1/+7
| | | | | | 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.