1. 27 3月, 2013 3 次提交
  2. 22 3月, 2013 1 次提交
  3. 20 3月, 2013 2 次提交
  4. 26 2月, 2013 1 次提交
  5. 11 2月, 2013 9 次提交
  6. 08 2月, 2013 2 次提交
  7. 05 2月, 2013 7 次提交
  8. 04 2月, 2013 2 次提交
  9. 27 1月, 2013 1 次提交
  10. 23 1月, 2013 1 次提交
    • A
      Lua struct library updated to version 0.2. · c17a7f6f
      antirez 提交于
      There was a bug in the previous version of this library that caused a
      crash under the circumstances described in issue #901.
      
      The newer version of the library appears to be fixed (I tested it
      manually with valgrind and everything seems fine now).
      
      For more information about this library please visit this web site:
      
          http://www.inf.puc-rio.br/~roberto/struct/
      c17a7f6f
  11. 22 1月, 2013 2 次提交
    • A
      redis-cli --bigkeys output is now simpler to understand. · bfad381f
      antirez 提交于
      bfad381f
    • A
      UNSUBSCRIBE and PUNSUBSCRIBE: always provide a reply. · 742e580f
      antirez 提交于
      UNSUBSCRIBE and PUNSUBSCRIBE commands are designed to mass-unsubscribe
      the client respectively all the channels and patters if called without
      arguments.
      
      However when these functions are called without arguments, but there are
      no channels or patters we are subscribed to, the old behavior was to
      don't reply at all.
      
      This behavior is broken, as every command should always reply.
      Also it is possible that we are no longer subscribed to a channels but we
      are subscribed to patters or the other way around, and the client should
      be notified with the correct number of subscriptions.
      
      Also it is not pretty that sometimes we did not receive a reply at all
      in a redis-cli session from these commands, blocking redis-cli trying
      to read the reply.
      
      This fixes issue #714.
      742e580f
  12. 21 1月, 2013 2 次提交
  13. 19 1月, 2013 7 次提交
    • A
      Additionally two typos fixed thanks to @jodal · a154908a
      antirez 提交于
      a154908a
    • A
      Whitelist SIGUSR1 to avoid auto-triggering errors. · da540228
      antirez 提交于
      This commit fixes issue #875 that was caused by the following events:
      
      1) There is an active child doing BGSAVE.
      2) flushall is called (or any other condition that makes Redis killing
      the saving child process).
      3) An error is sensed by Redis as the child exited with an error (killed
      by a singal), that stops accepting write commands until a BGSAVE happens
      to be executed with success.
      
      Whitelisting SIGUSR1 and making sure Redis always uses this signal in
      order to kill its own children fixes the issue.
      da540228
    • A
      Clear server.shutdown_asap on failed shutdown. · 9e5b7016
      antirez 提交于
      When a SIGTERM is received Redis schedules a shutdown. However if it
      fails to perform the shutdown it must be clear the shutdown_asap flag
      otehrwise it will try again and again possibly making the server
      unusable.
      9e5b7016
    • A
      Slowlog: don't log EXEC but just the executed commands. · dbde1d85
      antirez 提交于
      The Redis Slow Log always used to log the slow commands executed inside
      a MULTI/EXEC block. However also EXEC was logged at the end, which is
      perfectly useless.
      
      Now EXEC is no longer logged and a test was added to test this behavior.
      
      This fixes issue #759.
      dbde1d85
    • G
      Fixed many typos. · 560e0499
      guiquanz 提交于
      560e0499
    • C
      redis-cli prompt bug fix · c2b43eac
      charsyam 提交于
      c2b43eac
    • J
      Always exit if connection fails. · 5e2aa2ca
      Jan-Erik Rediger 提交于
      This avoids unnecessary core dumps. Fixes antirez/redis#894
      5e2aa2ca