1. 04 5月, 2015 2 次提交
    • A
      msi: added/renamed configuration files · 21f69fdf
      Alexis Campailla 提交于
      Added redis.windows.conf
      Renamed redis.service.conf to redis.windows-service.conf
      21f69fdf
    • N
      Added redis.service.conf that turns on logging to the Windows event viewer.... · 23fdac78
      NickMRamirez 提交于
      Added redis.service.conf that turns on logging to the Windows event viewer. This required that we also log to a file with the logfile setting, otherwise messages are not written to the event viewer...probably a mishandling of Windows OS. The event viewer requires a messages resource in the form of a DLL, so I updated the Win32_Interop project to have a custom build step to compile EventLog.res into EventLog.dll. Updated the WiX project to create the Windows event source and also the directory where the event log file will be written.
      23fdac78
  2. 25 2月, 2015 1 次提交
  3. 24 2月, 2015 1 次提交
  4. 07 9月, 2014 1 次提交
  5. 30 7月, 2014 1 次提交
  6. 17 7月, 2014 1 次提交
  7. 16 4月, 2014 1 次提交
  8. 09 4月, 2014 1 次提交
  9. 21 3月, 2014 1 次提交
  10. 31 1月, 2014 3 次提交
  11. 19 12月, 2013 3 次提交
  12. 12 12月, 2013 1 次提交
  13. 06 12月, 2013 2 次提交
  14. 05 12月, 2013 2 次提交
  15. 11 7月, 2013 2 次提交
  16. 08 7月, 2013 1 次提交
  17. 30 5月, 2013 2 次提交
  18. 27 5月, 2013 1 次提交
  19. 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
  20. 24 4月, 2013 2 次提交
  21. 11 3月, 2013 1 次提交
    • A
      serverCron() frequency is now a runtime parameter (was REDIS_HZ). · aec5ea5d
      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.
      aec5ea5d
  22. 06 3月, 2013 2 次提交
  23. 04 3月, 2013 2 次提交
  24. 12 2月, 2013 1 次提交
  25. 11 2月, 2013 4 次提交