1. 08 Jan, 2016 1 commit
    • antirez's avatar
      Lua debugger: fix crash printing nested or deep objects. · a75aa4bf
      antirez authored
      Example of offending code:
      
      > script debug yes
      OK
      > eval "local a = {1} a[1] = a\nprint(a)" 0
      1) * Stopped at 1, stop reason = step over
      2) -> 1   local a = {1} a[1] = a
      > next
      1) * Stopped at 2, stop reason = step over
      2) -> 2   print(a)
      > print
      
      ... server crash ...
      
      Close #2955.
      a75aa4bf
  2. 16 Dec, 2015 3 commits
  3. 27 Nov, 2015 1 commit
  4. 18 Nov, 2015 1 commit
  5. 17 Nov, 2015 28 commits
  6. 09 Nov, 2015 1 commit
    • antirez's avatar
      Scripting: fix redis.call() error reporting. · 1b5d24eb
      antirez authored
      Arguments arity and arguments type error of redis.call() were not
      reported correctly to Lua, so the command acted in this regard like
      redis.pcall(), but just for two commands. Redis.call() should always
      raise errors instead.
      1b5d24eb
  7. 05 Nov, 2015 2 commits
  8. 04 Nov, 2015 1 commit
  9. 30 Oct, 2015 2 commits