1. 13 Apr, 2012 2 commits
  2. 29 Mar, 2012 1 commit
  3. 28 Mar, 2012 1 commit
  4. 20 Mar, 2012 1 commit
    • antirez's avatar
      Support for read-only slaves. Semantical fixes. · f3fd419f
      antirez authored
      This commit introduces support for read only slaves via redis.conf and CONFIG GET/SET commands. Also various semantical fixes are implemented here:
      
      1) MULTI/EXEC with only read commands now work where the server is into a state where writes (or commands increasing memory usage) are not allowed. Before this patch everything inside a transaction would fail in this conditions.
      
      2) Scripts just calling read-only commands will work against read only
      slaves, when the server is out of memory, or when persistence is into an
      error condition. Before the patch EVAL always failed in this condition.
      f3fd419f
  5. 24 Feb, 2012 1 commit
  6. 13 Feb, 2012 1 commit
  7. 02 Feb, 2012 1 commit
  8. 01 Feb, 2012 1 commit
    • antirez's avatar
      SORT is now more deterministic: does not accept to compare by score items that... · 2c861050
      antirez authored
      SORT is now more deterministic: does not accept to compare by score items that have scores not representing a valid double. Also items with the same score are compared lexycographically. At the same time the scripting side introduced the ability to sort the output of SORT when sort uses the BY <constant> optimization, resulting in no specific ordering. Since in this case the user may use GET, and the result of GET can be null, converted into false as Lua data type, this commit also introduces the ability to sort Lua tables containining false, only if the first (faster) attempt at using just table.sort with a single argument fails.
      2c861050
  9. 31 Jan, 2012 1 commit
    • antirez's avatar
      Order output of commands returning random arrays using table.sort when called... · 548efd91
      antirez authored
      Order output of commands returning random arrays using table.sort when called from Lua, partially fixing issue #165. The issue is yet not completely fixed since we can't add the REDIS_CMD_SORT_FOR_SCRIPT flag in SORT currently, both because it may contain NULLs and because it is not cool to re-sort everything at every call when instead this should be sorted only if BY <constant> is used.
      548efd91
  10. 29 Jan, 2012 1 commit
  11. 18 Nov, 2011 1 commit
  12. 27 Oct, 2011 1 commit
  13. 25 Oct, 2011 4 commits
  14. 24 Oct, 2011 1 commit
  15. 20 Oct, 2011 1 commit
  16. 19 Oct, 2011 1 commit
  17. 04 Oct, 2011 1 commit
  18. 27 Sep, 2011 3 commits
  19. 23 Sep, 2011 1 commit
  20. 13 Jul, 2011 1 commit
  21. 25 May, 2011 14 commits