1. 05 2月, 2013 6 次提交
  2. 04 2月, 2013 2 次提交
  3. 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
  4. 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
  5. 21 1月, 2013 2 次提交
  6. 19 1月, 2013 8 次提交
  7. 18 1月, 2013 1 次提交
    • N
      redis-cli --rdb fails if server sends a ping · 0f4dbd9a
      Nathan Parry 提交于
      Redis pings slaves in "pre-synchronization stage" with newlines. (See
      https://github.com/antirez/redis/blob/2.6.9/src/replication.c#L814)
      However, redis-cli does not expect this - it sees the newline as the end
      of the bulk length line, and ends up returning 0 as bulk the length.
      This manifests as the following when running redis-cli:
      
          $ ./src/redis-cli --rdb some_file
          SYNC sent to master, writing 0 bytes to 'some_file'
          Transfer finished with success.
      
      With this commit, we just ignore leading newlines while reading the bulk
      length line.
      
      To reproduce the problem, load enough data into Redis so that the
      preparation of the RDB snapshot takes long enough for a ping to occur
      while redis-cli is waiting for the data.
      0f4dbd9a
  8. 17 1月, 2013 2 次提交
  9. 15 1月, 2013 4 次提交
    • A
      Tests for CLIENT GETNAME/SETNAME. · f9c1263f
      antirez 提交于
      f9c1263f
    • A
      Typo fixed, ASCI -> ASCII. · 1b2ac3b2
      antirez 提交于
      1b2ac3b2
    • A
      CLIENT GETNAME and CLIENT SETNAME introduced. · c5f23ca7
      antirez 提交于
      Sometimes it is much simpler to debug complex Redis installations if it
      is possible to assign clients a name that is displayed in the CLIENT
      LIST output.
      
      This is the case, for example, for "leaked" connections. The ability to
      provide a name to the client makes it quite trivial to understand what
      is the part of the code implementing the client not releasing the
      resources appropriately.
      
      Behavior:
      
          CLIENT SETNAME: set a name for the client, or remove the current
                          name if an empty name is set.
          CLIENT GETNAME: get the current name, or a nil.
          CLIENT LIST: now displays the client name if any.
      
      Thanks to Mark Gravell for pushing this idea forward.
      c5f23ca7
    • A
      Undo slave-master handshake when SLAVEOF sets a new slave. · 27abaa23
      antirez 提交于
      Issue #828 shows how Redis was not correctly undoing a non-blocking
      connection attempt with the previous master when the master was set to a
      new address using the SLAVEOF command.
      
      This was also a result of lack of refactoring, so now there is a
      function to cancel the non blocking handshake with the master.
      The new function is now used when SLAVEOF NO ONE is called or when
      SLAVEOF is used to set the master to a different address.
      27abaa23
  10. 12 1月, 2013 1 次提交
  11. 11 1月, 2013 1 次提交
  12. 10 1月, 2013 3 次提交
  13. 03 1月, 2013 2 次提交
  14. 20 12月, 2012 1 次提交
  15. 17 12月, 2012 2 次提交
  16. 13 12月, 2012 1 次提交
  17. 12 12月, 2012 1 次提交
    • A
      Fix config.h endianess detection to work on Linux / PPC64. · d64a9cf5
      antirez 提交于
      Config.h performs endianess detection including OS-specific headers to
      define the endianess macros, or when this is not possible, checking the
      processor type via ifdefs.
      
      Sometimes when the OS-specific macro is included, only __BYTE_ORDER is
      defined, while BYTE_ORDER remains undefined. There is code at the end of
      config.h endianess detection in order to define the macros without the
      underscore, but it was not working correctly.
      
      This commit fixes endianess detection fixing Redis on Linux / PPC64 and
      possibly other systems.
      d64a9cf5