1. 16 Jun, 2016 2 commits
    • antirez's avatar
      RESTORE: accept RDB dumps with older versions. · a3f893b8
      antirez authored
      Reference issue #3218.
      
      Checking the code I can't find a reason why the original RESTORE
      code was so opinionated about restoring only the current version. The
      code in to `rdb.c` appears to be capable as always to restore data from
      older versions of Redis, and the only places where it is needed the
      current version in order to correctly restore data, is while loading the
      opcodes, not the values itself as it happens in the case of RESTORE.
      
      For the above reasons, this commit enables RESTORE to accept older
      versions of values payloads.
      a3f893b8
    • antirez's avatar
      Minor aesthetic fixes to PR #3264. · 2f2fd64c
      antirez authored
      Comment format fixed + local var modified from camel case to underscore
      separators as Redis code base normally does (camel case is mostly used
      for global symbols like structure names, function names, global vars,
      ...).
      2f2fd64c
  2. 15 Jun, 2016 2 commits
  3. 14 Jun, 2016 3 commits
  4. 13 Jun, 2016 6 commits
  5. 10 Jun, 2016 5 commits
  6. 08 Jun, 2016 1 commit
  7. 07 Jun, 2016 2 commits
  8. 05 Jun, 2016 7 commits
  9. 04 Jun, 2016 2 commits
  10. 03 Jun, 2016 3 commits
  11. 01 Jun, 2016 3 commits
  12. 31 May, 2016 1 commit
    • antirez's avatar
      Avoid undefined behavior in BITFIELD implementation. · 2503acfc
      antirez authored
      Probably there is no compiler that will actaully break the code or raise
      a signal for unsigned -> signed overflowing conversion, still it was
      apparently possible to write it in a more correct way.
      
      All tests passing.
      2503acfc
  13. 30 May, 2016 2 commits
  14. 29 May, 2016 1 commit