1. 18 May, 2016 5 commits
  2. 08 May, 2016 2 commits
  3. 06 May, 2016 1 commit
  4. 05 May, 2016 15 commits
  5. 04 May, 2016 11 commits
  6. 02 May, 2016 6 commits
    • antirez's avatar
      New masters with slots are now targets of migration if others are. · 7b618823
      antirez authored
      This fixes issue #3043.
      
      Before this fix, after a complete resharding of a master slots
      to other nodes, the master remains empty and the slaves migrate away
      to other masters with non-zero nodes. However the old master now empty,
      is no longer considered a target for migration, because the system has
      no way to tell it had slaves in the past.
      
      This fix leaves the algorithm used in the past untouched, but adds a
      new rule. When a new or old master which is empty and without slaves,
      are assigend with their first slot, if other masters in the cluster have
      slaves, they are automatically considered to be targets for replicas
      migration.
      7b618823
    • antirez's avatar
      redis-cli preferences and rc file support. · bbf93108
      antirez authored
      bbf93108
    • antirez's avatar
      redis-cli hints. · 3fd3fca0
      antirez authored
      3fd3fca0
    • antirez's avatar
      ae.c: Fix delay until next timer event. · 29645f1f
      antirez authored
      This fix was written by Anthony LaTorre.
      The old code mis-calculated the amount of time to wait till next event.
      29645f1f
    • antirez's avatar
      aa79c1f1
    • antirez's avatar
      Fix ae.c to avoid timers infinite loop. · 0b69c986
      antirez authored
      This fix was suggested by Anthony LaTorre, that provided also a good
      test case that was used to verify the fix.
      
      The problem with the old implementation is that, the time returned by
      a timer event (that is the time after it want to run again) is added
      to the event *start time*. So if the event takes, in order to run, more
      than the time it says it want to be scheduled again for running, an
      infinite loop is triggered.
      0b69c986