1. 06 Oct, 2014 5 commits
  2. 08 Sep, 2014 1 commit
  3. 27 Aug, 2014 1 commit
  4. 28 Jul, 2014 1 commit
  5. 25 Jul, 2014 1 commit
  6. 09 Jul, 2014 1 commit
  7. 21 Jun, 2014 1 commit
    • antirez's avatar
      Client types generalized. · b6a26b52
      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.
      b6a26b52
  8. 22 Apr, 2014 1 commit
  9. 16 Apr, 2014 1 commit
  10. 31 Jan, 2014 3 commits
  11. 19 Dec, 2013 3 commits
  12. 12 Dec, 2013 1 commit
  13. 06 Dec, 2013 1 commit
  14. 05 Dec, 2013 3 commits
  15. 11 Jul, 2013 2 commits
  16. 08 Jul, 2013 1 commit
  17. 30 May, 2013 2 commits
  18. 27 May, 2013 1 commit
  19. 15 May, 2013 1 commit
    • antirez's avatar
      Added a define for most configuration defaults. · 180cfaae
      antirez authored
      Also the logfile option was modified to always have an explicit value
      and to log to stdout when an empty string is used as log file.
      
      Previously there was special handling of the string "stdout" that set
      the logfile to NULL, this always required some special handling.
      180cfaae
  20. 24 Apr, 2013 1 commit
  21. 06 Mar, 2013 1 commit
  22. 04 Mar, 2013 1 commit
  23. 12 Feb, 2013 1 commit
  24. 11 Feb, 2013 2 commits
  25. 05 Feb, 2013 1 commit
  26. 04 Feb, 2013 1 commit
  27. 28 Jan, 2013 1 commit
    • antirez's avatar
      Keyspace events: it is now possible to select subclasses of events. · b9bc4f91
      antirez authored
      When keyspace events are enabled, the overhead is not sever but
      noticeable, so this commit introduces the ability to select subclasses
      of events in order to avoid to generate events the user is not
      interested in.
      
      The events can be selected using redis.conf or CONFIG SET / GET.
      b9bc4f91