1. 19 Mar, 2012 1 commit
  2. 18 Mar, 2012 7 commits
  3. 15 Mar, 2012 1 commit
    • antirez's avatar
      Fix for issue #391. · f1eaf572
      antirez authored
      Use a simple protocol between clientsCron() and helper functions to
      understand if the client is still valind and clientsCron() should
      continue processing or if the client was freed and we should continue
      with the next one.
      f1eaf572
  4. 14 Mar, 2012 5 commits
  5. 13 Mar, 2012 7 commits
  6. 10 Mar, 2012 11 commits
  7. 09 Mar, 2012 1 commit
  8. 08 Mar, 2012 4 commits
  9. 07 Mar, 2012 3 commits
    • antirez's avatar
      By default Redis refuses writes with an error if the latest BGSAVE failed (and... · 4d3bbf35
      antirez authored
      By default Redis refuses writes with an error if the latest BGSAVE failed (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.
      4d3bbf35
    • antirez's avatar
      Refuse writes if can't persist on disk. · c25e7eaf
      antirez authored
      Redis now refuses accepting write queries if RDB persistence is
      configured, but RDB snapshots can't be generated for some reason.
      The status of the latest background save operation is now exposed
      in the INFO output as well. This fixes issue #90.
      c25e7eaf
    • antirez's avatar
      Better MONITOR output, now includes client ip:port or the lua string if the... · e31b615e
      antirez authored
      Better MONITOR output, now includes client ip:port or the lua string if the command was executed by the scripting engine.
      e31b615e