1. 05 Jun, 2016 2 commits
  2. 10 May, 2016 1 commit
  3. 04 May, 2016 1 commit
  4. 25 Apr, 2016 1 commit
  5. 22 Apr, 2016 1 commit
    • therealbill's avatar
      fix for #3187 · 14086a46
      therealbill authored
      I've renamed maxmemoryToString to evictPolicyToString since that is
      more accurate (and easier to mentally connect with the correct data), as
      well as updated the function to user server.maxmemory_policy rather than
      server.maxmemory. Now with a default config it is actually returning
      the correct policy rather than volatile-lru.
      14086a46
  6. 29 Jan, 2016 2 commits
  7. 25 Jan, 2016 1 commit
  8. 07 Jan, 2016 1 commit
    • antirez's avatar
      New security feature: Redis protected mode. · edd4d555
      antirez authored
      An exposed Redis instance on the internet can be cause of serious
      issues. Since Redis, by default, binds to all the interfaces, it is easy
      to forget an instance without any protection layer, for error.
      
      Protected mode try to address this feature in a soft way, providing a
      layer of protection, but giving clues to Redis users about why the
      server is not accepting connections.
      
      When protected mode is enabeld (the default), and if there are no
      minumum hints about the fact the server is properly configured (no
      "bind" directive is used in order to restrict the server to certain
      interfaces, nor a password is set), clients connecting from external
      intefaces are refused with an error explaining what to do in order to
      fix the issue.
      
      Clients connecting from the IPv4 and IPv6 lookback interfaces are still
      accepted normally, similarly Unix domain socket connections are not
      restricted in any way.
      edd4d555
  9. 05 Oct, 2015 1 commit
  10. 28 Jul, 2015 1 commit
  11. 27 Jul, 2015 2 commits
  12. 26 Jul, 2015 6 commits
  13. 16 Jul, 2015 1 commit
  14. 12 Mar, 2015 2 commits
  15. 11 Mar, 2015 3 commits
  16. 10 Mar, 2015 2 commits
  17. 08 Mar, 2015 1 commit
  18. 12 Feb, 2015 1 commit
  19. 04 Feb, 2015 1 commit
  20. 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
  21. 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
  22. 11 Dec, 2014 1 commit
  23. 27 Oct, 2014 1 commit
  24. 16 Oct, 2014 1 commit
  25. 29 Sep, 2014 1 commit
  26. 17 Sep, 2014 1 commit
  27. 08 Sep, 2014 1 commit
  28. 04 Sep, 2014 1 commit
    • antirez's avatar
      Sentinel: announce ip/port changes + rewrite. · cd576a1a
      antirez authored
      The original implementation was modified in order to allow to
      selectively announce a different IP or port, and to rewrite the two
      options in the config file after a rewrite.
      cd576a1a