1. 03 Jun, 2016 1 commit
  2. 25 Apr, 2016 1 commit
  3. 15 Feb, 2016 1 commit
  4. 17 Nov, 2015 1 commit
  5. 13 Nov, 2015 1 commit
  6. 01 Oct, 2015 2 commits
  7. 27 Jul, 2015 2 commits
  8. 26 Jul, 2015 6 commits
  9. 17 Jul, 2015 1 commit
  10. 21 Jan, 2015 1 commit
    • antirez's avatar
      AOF rewrite: set iterator var to NULL when freed. · 4433f5a7
      antirez authored
      The cleanup code expects that if 'di' is not NULL, it is a valid
      iterator that should be freed.
      
      The result of this bug was a crash of the AOF rewriting process if an
      error occurred after the DBs data are written and the iterator is no
      longer valid.
      4433f5a7
  11. 02 Jan, 2015 1 commit
  12. 29 Sep, 2014 3 commits
    • Matt Stancliff's avatar
      Clean up text throughout project · 12d0195b
      Matt Stancliff authored
        - Remove trailing newlines from redis.conf
        - Fix comment misspelling
        - Clarifies zipEncodeLength usage and a C API mention (#1243, #1242)
        - Fix cluster typos (inspired by @papanikge #1507)
        - Fix rewite -> rewrite in a few places (inspired by #682)
      
      Closes #1243, #1242, #1507
      12d0195b
    • zionwu's avatar
      Fix incorrect comments · a2583466
      zionwu authored
      error != success; and 0 != number of bytes written
      
      Closes #1806
      a2583466
    • Jan-Erik Rediger's avatar
      Fix many small typos · 0cb87481
      Jan-Erik Rediger authored
      Closes #1871
      0cb87481
  13. 16 Sep, 2014 2 commits
    • antirez's avatar
      Seek at the end of AOF after truncate call. · 878c089e
      antirez authored
      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.
      878c089e
    • antirez's avatar
      On AOF end of file, truncate the AOF to last valid command. · 0ba8fe1a
      antirez authored
      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.
      0ba8fe1a
  14. 08 Sep, 2014 3 commits
  15. 13 Aug, 2014 1 commit
  16. 08 Jul, 2014 1 commit
  17. 05 Jul, 2014 2 commits
  18. 04 Jul, 2014 8 commits
  19. 02 Jul, 2014 2 commits