1. 12 5月, 2012 2 次提交
    • A
      f078d562
    • A
      More incremental active expired keys collection process. · 3a401464
      antirez 提交于
      If a large amonut of keys are all expiring about at the same time, the
      "active" expired keys collection cycle used to block as far as the
      percentage of already expired keys was >= 25% of the total population of
      keys with an expire set.
      
      This could block the server even for many seconds in order to reclaim
      memory ASAP. The new algorithm uses at max a small amount of
      milliseconds per cycle, even if this means reclaiming the memory less
      promptly it also means a more responsive server.
      3a401464
  2. 02 5月, 2012 1 次提交
  3. 27 4月, 2012 1 次提交
    • A
      Don't use an alternative stack for SIGSEGV & co. · a28ab2a9
      antirez 提交于
      This commit reverts most of c5757662, in
      order to use back main stack for signal handling.
      
      The main reason is that otherwise it is completely pointless that we do
      a lot of efforts to print the stack trace on crash, and the content of
      the stack and registers as well. Using an alternate stack broken this
      feature completely.
      a28ab2a9
  4. 20 4月, 2012 1 次提交
  5. 18 4月, 2012 1 次提交
  6. 13 4月, 2012 3 次提交
  7. 11 4月, 2012 1 次提交
  8. 10 4月, 2012 1 次提交
  9. 08 4月, 2012 1 次提交
  10. 07 4月, 2012 1 次提交
  11. 05 4月, 2012 5 次提交
  12. 03 4月, 2012 1 次提交
  13. 30 3月, 2012 1 次提交
  14. 28 3月, 2012 4 次提交
  15. 25 3月, 2012 1 次提交
    • A
      New INFO field aof_delayed_fsync introduced. · 81f32c7b
      antirez 提交于
      This new field counts all the times Redis is configured with AOF enabled and
      fsync policy 'everysec', but the previous fsync performed by the
      background thread was not able to complete within two seconds, forcing
      Redis to perform a write against the AOF file while the fsync is still
      in progress (likely a blocking operation).
      81f32c7b
  16. 24 3月, 2012 1 次提交
  17. 22 3月, 2012 3 次提交
    • A
      Correctly create shared.oomerr as an sds string. · 3f7ad833
      antirez 提交于
      3f7ad833
    • A
      DEBUG should not be flagged as w otherwise we can not call DEBUG DIGEST and... · 38bb4522
      antirez 提交于
      DEBUG should not be flagged as w otherwise we can not call DEBUG DIGEST and other commands against read only slaves.
      38bb4522
    • A
      Support for read-only slaves. Semantical fixes. · 05406168
      antirez 提交于
      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.
      05406168
  18. 20 3月, 2012 1 次提交
  19. 19 3月, 2012 2 次提交
  20. 18 3月, 2012 1 次提交
  21. 16 3月, 2012 1 次提交
    • A
      Fix for issue #391. · f1eaf572
      antirez 提交于
      Use a simple protocol between clientsCron() and helper functions to
      understand if the client is still valind and clientsCron() should
      continue processing or if the client was freed and we should continue
      with the next one.
      f1eaf572
  22. 14 3月, 2012 3 次提交
  23. 10 3月, 2012 1 次提交
  24. 08 3月, 2012 2 次提交
    • A
      Instantaneous ops/sec figure in INFO output. · 250e7f69
      antirez 提交于
      250e7f69
    • A
      run_id added to INFO output. · 91d664d6
      antirez 提交于
      The Run ID is a field that identifies a single execution of the Redis
      server. It can be useful for many purposes as it makes easy to detect if
      the instance we are talking about is the same, or if it is a different
      one or was rebooted. An application of run_id will be in the partial
      synchronization of replication, where a slave may request a partial sync
      from a given offset only if it is talking with the same master. Another
      application is in failover and monitoring scripts.
      91d664d6