1. 06 3月, 2013 7 次提交
  2. 04 3月, 2013 4 次提交
  3. 12 2月, 2013 3 次提交
  4. 11 2月, 2013 9 次提交
  5. 08 2月, 2013 2 次提交
  6. 05 2月, 2013 7 次提交
  7. 04 2月, 2013 2 次提交
  8. 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
  9. 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
  10. 21 1月, 2013 2 次提交
  11. 19 1月, 2013 1 次提交