1. 02 May, 2016 11 commits
  2. 19 Feb, 2016 3 commits
  3. 18 Feb, 2016 4 commits
  4. 15 Feb, 2016 1 commit
  5. 10 Feb, 2016 2 commits
  6. 05 Feb, 2016 2 commits
  7. 29 Jan, 2016 2 commits
    • antirez's avatar
      Typo ASII -> ASCII fixed in comment. · 0c7c7631
      antirez authored
      0c7c7631
    • antirez's avatar
      Cluster: include node IDs in SLOTS output. · 0f3fb009
      antirez authored
      CLUSTER SLOTS now includes IDs in the nodes description associated with
      a given slot range. Certain client libraries implementations need a way
      to reference a node in an unique way, so they were relying on CLUSTER
      NODES, that is not a stable API and may change frequently depending on
      Redis Cluster future requirements.
      0f3fb009
  8. 28 Jan, 2016 2 commits
  9. 27 Jan, 2016 1 commit
    • antirez's avatar
      Sentinel: improve handling of known Sentinel instances. · 6bd409d0
      antirez authored
      1. Bug #3035 is fixed (NULL pointer access). This was happening with the
         folling set of conditions:
      
      * For some reason one of the Sentinels, let's call it Sentinel_A, changed ID (reconfigured from scratch), but is as the same address at which it used to be.
      
      * Sentinel_A performs a failover and/or has a newer configuration compared to another Sentinel, that we call, Sentinel_B.
      
      * Sentinel_B receives an HELLO message from Sentinel_A, where the address and/or ID is mismatched, but it is reporting a newer configuration for the master they are both monitoring.
      
      2. Sentinels now must have an ID otherwise they are not loaded nor persisted in the configuration. This allows to have conflicting Sentinels with the same address since now the master->sentinels dictionary is indexed by Sentinel ID.
      
      3. The code now detects if a Sentinel is annoucing itself with an IP/port pair already busy (of another Sentinel). The old Sentinel that had the same port/pair is set as having port 0, that means, the address is invalid. We may discover the right address later via HELLO messages.
      6bd409d0
  10. 26 Jan, 2016 6 commits
  11. 25 Jan, 2016 6 commits
    • antirez's avatar
      Redis 3.1.102 (Redis 3.2.0 RC2). · 8a8fe56c
      antirez authored
      8a8fe56c
    • antirez's avatar
      Minor MIGRATE refactoring. · 33c4da4a
      antirez authored
      Centralize cleanup of newargv in a single place.
      Add more comments to help a bit following a complex function.
      
      Related to issue #3016.
      33c4da4a
    • antirez's avatar
      More variadic MIGRATE fixes. · 5a5e3231
      antirez authored
      Another leak was fixed in the case of syntax error by restructuring the
      allocation strategy for the two dynamic vectors.
      
      We also make sure to always close the cached socket on I/O errors so that
      all the I/O errors are handled the same, even if we had a previously
      queued error of a different kind from the destination server.
      
      Thanks to Kevin McGehee. Related to issue #3016.
      5a5e3231
    • antirez's avatar
      Various fixes to MIGRATE with multiple keys. · 77837a91
      antirez authored
      In issue #3016 Kevin McGehee identified multiple very serious issues in
      the new implementation of MIGRATE. This commit attempts to restructure
      the code in oder to avoid mistakes, an analysis of the new
      implementation is in progress in order to check for possible edge cases.
      77837a91
    • antirez's avatar
      Test: Handle LOADING in restart_instance. · c476dbad
      antirez authored
      c476dbad
    • antirez's avatar
      3148b522