1. 05 May, 2016 1 commit
  2. 10 Feb, 2016 2 commits
  3. 05 Feb, 2016 2 commits
  4. 31 Jan, 2016 3 commits
  5. 30 Jan, 2016 1 commit
  6. 29 Jan, 2016 4 commits
  7. 28 Jan, 2016 1 commit
  8. 26 Jan, 2016 6 commits
  9. 25 Jan, 2016 17 commits
  10. 19 Jan, 2016 1 commit
  11. 08 Jan, 2016 2 commits
    • antirez's avatar
      Scripting: handle trailing comments. · e50b9a07
      antirez authored
      This fix, provided by Paul Kulchenko (@pkulchenko), allows the Lua
      scripting engine to evaluate statements with a trailing comment like the
      following one:
      
          EVAL "print() --comment" 0
      
      Lua can't parse the above if the string does not end with a newline, so
      now a final newline is always added automatically. This does not change
      the SHA1 of scripts since the SHA1 is computed on the body we pass to
      EVAL, without the other code we add to register the function.
      
      Close #2951.
      e50b9a07
    • antirez's avatar
      Allow MIGRATE to always be called on local keys for open slots. · e9abc944
      antirez authored
      Extend the MIGRATE extra freedom to be able to be called in the context
      of the local slot, anytime there is a slot open in one or the other
      direction (importing or migrating). This is useful for redis-trib to fix
      the cluster when it has in an odd state.
      
      Thix fix allows "redis-trib fix" to make its work in certain cases where
      previously an error was reported.
      e9abc944