1. 31 1月, 2014 3 次提交
  2. 19 12月, 2013 3 次提交
  3. 12 12月, 2013 1 次提交
  4. 06 12月, 2013 2 次提交
  5. 05 12月, 2013 2 次提交
  6. 11 7月, 2013 2 次提交
  7. 08 7月, 2013 1 次提交
  8. 30 5月, 2013 2 次提交
  9. 27 5月, 2013 1 次提交
  10. 15 5月, 2013 1 次提交
    • A
      Added a define for most configuration defaults. · 180cfaae
      antirez 提交于
      Also the logfile option was modified to always have an explicit value
      and to log to stdout when an empty string is used as log file.
      
      Previously there was special handling of the string "stdout" that set
      the logfile to NULL, this always required some special handling.
      180cfaae
  11. 24 4月, 2013 1 次提交
  12. 06 3月, 2013 1 次提交
  13. 04 3月, 2013 1 次提交
  14. 12 2月, 2013 1 次提交
  15. 11 2月, 2013 2 次提交
  16. 05 2月, 2013 1 次提交
  17. 04 2月, 2013 1 次提交
  18. 28 1月, 2013 2 次提交
  19. 19 1月, 2013 1 次提交
    • G
      Fixed many typos. · 1caf0939
      guiquanz 提交于
      Conflicts fixed, mainly because 2.8 has no cluster support / files:
      	00-RELEASENOTES
      	src/cluster.c
      	src/crc16.c
      	src/redis-trib.rb
      	src/redis.h
      1caf0939
  20. 15 12月, 2012 1 次提交
    • A
      serverCron() frequency is now a runtime parameter (was REDIS_HZ). · a6d117b6
      antirez 提交于
      REDIS_HZ is the frequency our serverCron() function is called with.
      A more frequent call to this function results into less latency when the
      server is trying to handle very expansive background operations like
      mass expires of a lot of keys at the same time.
      
      Redis 2.4 used to have an HZ of 10. This was good enough with almost
      every setup, but the incremental key expiration algorithm was working a
      bit better under *extreme* pressure when HZ was set to 100 for Redis
      2.6.
      
      However for most users a latency spike of 30 milliseconds when million
      of keys are expiring at the same time is acceptable, on the other hand a
      default HZ of 100 in Redis 2.6 was causing idle instances to use some
      CPU time compared to Redis 2.4. The CPU usage was in the order of 0.3%
      for an idle instance, however this is a shame as more energy is consumed
      by the server, if not important resources.
      
      This commit introduces HZ as a runtime parameter, that can be queried by
      INFO or CONFIG GET, and can be modified with CONFIG SET. At the same
      time the default frequency is set back to 10.
      
      In this way we default to a sane value of 10, but allows users to
      easily switch to values up to 500 for near real-time applications if
      needed and if they are willing to pay this small CPU usage penalty.
      a6d117b6
  21. 31 8月, 2012 1 次提交
  22. 22 4月, 2012 1 次提交
    • A
      Limit memory used by big SLOWLOG entries. · 590d55a2
      antirez 提交于
      Two limits are added:
      
      1) Up to SLOWLOG_ENTRY_MAX_ARGV arguments are logged.
      2) Up to SLOWLOG_ENTRY_MAX_STRING bytes per argument are logged.
      3) slowlog-max-len is set to 128 by default (was 1024).
      
      The number of remaining arguments / bytes is logged in the entry
      so that the user can understand better the nature of the logged command.
      590d55a2
  23. 21 4月, 2012 1 次提交
  24. 13 4月, 2012 2 次提交
    • A
      Stop access to global vars. Not configurable. · 97cab309
      antirez 提交于
      After considering the interaction between ability to delcare globals in
      scripts using the 'global' function, and the complexities related to
      hanlding replication and AOF in a sane way with globals AND ability to
      turn protection On and Off, we reconsidered the design. The new design
      makes clear that there is only one good way to write Redis scripts, that
      is not using globals. In the rare cases state must be retained across
      calls a Redis key can be used.
      97cab309
    • A
      Scripting: globals protection can now be switched on/off. · 3e6a4463
      antirez 提交于
      3e6a4463
  25. 10 4月, 2012 1 次提交
  26. 22 3月, 2012 2 次提交
    • A
      9aba884b
    • 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
  27. 20 3月, 2012 1 次提交
  28. 10 3月, 2012 1 次提交