1. 24 6月, 2013 1 次提交
    • A
      Replication of scripts as EVALSHA: sha1 caching implemented. · 94ec7db4
      antirez 提交于
      This code is only responsible to take an LRU-evicted fixed length cache
      of SHA1 that we are sure all the slaves received.
      
      In this commit only the implementation is provided, but the Redis core
      does not use it to actually send EVALSHA to slaves when possible.
      94ec7db4
  2. 21 6月, 2013 1 次提交
    • A
      New API to force propagation. · 515a26bb
      antirez 提交于
      The old REDIS_CMD_FORCE_REPLICATION flag was removed from the
      implementation of Redis, now there is a new API to force specific
      executions of a command to be propagated to AOF / Replication link:
      
          void forceCommandPropagation(int flags);
      
      The new API is also compatible with Lua scripting, so a script that will
      execute commands that are forced to be propagated, will also be
      propagated itself accordingly even if no change to data is operated.
      
      As a side effect, this new design fixes the issue with scripts not able
      to propagate PUBLISH to slaves (issue #873).
      515a26bb
  3. 20 6月, 2013 8 次提交
  4. 19 6月, 2013 2 次提交
    • A
      Fix logStackTrace() when logging to stdout. · 338cd483
      antirez 提交于
      When the semantics changed from logfile = NULL to logfile = "" to log
      into standard output, no proper change was made to logStackTrace() to
      make it able to work with the new setup.
      
      This commit fixes the issue.
      338cd483
    • A
      Lua script errors format more unified. · 9c2c878e
      antirez 提交于
      lua_pcall error handler now formats errors in a way more similar to
      luaPushError() so that errors generated in different contexts look alike.
      9c2c878e
  5. 18 6月, 2013 1 次提交
  6. 17 6月, 2013 2 次提交
  7. 13 6月, 2013 2 次提交
  8. 12 6月, 2013 1 次提交
  9. 04 6月, 2013 1 次提交
  10. 01 6月, 2013 1 次提交
  11. 31 5月, 2013 2 次提交
  12. 30 5月, 2013 9 次提交
  13. 28 5月, 2013 2 次提交
  14. 27 5月, 2013 7 次提交