1. 09 11月, 2014 1 次提交
  2. 06 11月, 2014 2 次提交
  3. 29 10月, 2014 2 次提交
  4. 24 10月, 2014 1 次提交
    • D
      Using QueryPerformancecounter to measure latency in redis-benchmark.exe · 7c664444
      deepakv 提交于
       Redis-benchmark on windows seems to be not able to calculate the time granularity in micro seconds.
           Came across this article http://msdn.microsoft.com/en-us/library/windows/desktop/dn553408(v=vs.85).aspx and updated the benchmark for latency measurements accordingly.
      
           Windows:
           Following is output from windows for micro seconds taken for each request. Where for any request taking less than 1 ms is being calculated as 0
           redis-benchmark.exe -h <azurerediscache> -a pwd -c 1 -d 1024 -t get -n 10
           0,0,0,0,0,0,0,0
      
           Linux:
           src/redis-benchmark -h <azurerediscache> -a pwd -c 1 -d 1024 -t get -n 10
           792,800,808,820,837,845,888,891,971,2498
      
           After the change on windows now it shows following:
           796,809,887,890,893,943,944,974
      7c664444
  5. 02 10月, 2014 2 次提交
  6. 24 9月, 2014 1 次提交
  7. 22 9月, 2014 1 次提交
  8. 20 9月, 2014 2 次提交
  9. 19 9月, 2014 2 次提交
  10. 17 9月, 2014 2 次提交
  11. 16 9月, 2014 6 次提交
    • A
      Redis 2.8.16. · a6953496
      antirez 提交于
      a6953496
    • A
      Better truncated AOF loading tests. · 5e38bc38
      antirez 提交于
      Now there are tests to write more data after loading a truncated AOF,
      testing that the loaded data is correct, appending more, and testing
      again.
      5e38bc38
    • A
      Seek at the end of AOF after truncate call. · 01f7db60
      antirez 提交于
      It is not clear if files open in append only mode will automatically fix
      their offset after a truncate(2) operation. This commit makes sure that
      we reposition the AOF file descriptor offset at the end of the file
      after a truncated AOF is loaded and trimmed to the last valid command.
      01f7db60
    • A
      On AOF end of file, truncate the AOF to last valid command. · 9faeff02
      antirez 提交于
      Recently we introduced the ability to load truncated AOFs, but
      unfortuantely the support was broken since the server, after loading the
      truncated AOF, continues appending to the file that is corrupted at the
      end. The problem is fixed only in the next AOF rewrite.
      
      This commit fixes the issue by truncating the AOF to the last valid
      opcode, and aborting if it is not possible to truncate the file
      correctly.
      9faeff02
    • A
      Don't propagate SAVE. · fbd9dc60
      antirez 提交于
      This is a general fix (check that dirty delta is positive) but actually
      should have as the only effect fixing the SAVE propagation to
      AOF and slaves.
      fbd9dc60
    • J
  12. 12 9月, 2014 4 次提交
  13. 10 9月, 2014 7 次提交
  14. 08 9月, 2014 7 次提交