1. 09 Jan, 2015 1 commit
    • Matt Stancliff's avatar
      Supervise redis processes only if configured · 36a3b753
      Matt Stancliff authored
      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
      36a3b753
  2. 08 Jan, 2015 1 commit
  3. 02 Jan, 2015 1 commit
    • Matt Stancliff's avatar
      Config: Add quicklist, remove old list options · 02bb515a
      Matt Stancliff authored
      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.
      02bb515a
  4. 02 Dec, 2014 1 commit
  5. 31 Oct, 2014 1 commit
  6. 27 Oct, 2014 1 commit
  7. 24 Oct, 2014 1 commit
  8. 29 Sep, 2014 5 commits
  9. 17 Sep, 2014 1 commit
  10. 08 Sep, 2014 1 commit
  11. 07 Aug, 2014 1 commit
  12. 28 Jul, 2014 1 commit
  13. 25 Jul, 2014 1 commit
  14. 02 Jul, 2014 1 commit
  15. 16 Jun, 2014 1 commit
    • antirez's avatar
      Client types generalized. · 56d26c23
      antirez authored
      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.
      56d26c23
  16. 22 May, 2014 1 commit
  17. 23 Apr, 2014 1 commit
  18. 15 Apr, 2014 1 commit
  19. 21 Mar, 2014 1 commit
  20. 20 Mar, 2014 1 commit
  21. 31 Jan, 2014 6 commits
  22. 19 Dec, 2013 3 commits
  23. 11 Dec, 2013 1 commit
  24. 06 Dec, 2013 1 commit
  25. 05 Dec, 2013 3 commits
  26. 09 Oct, 2013 1 commit
  27. 08 Jul, 2013 1 commit
    • antirez's avatar
      Revert "Document port6 and bind6 config options." · c76df730
      antirez authored
      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 93570e17.
      c76df730