1. 08 Sep, 2014 2 commits
  2. 04 Sep, 2014 3 commits
  3. 02 Sep, 2014 2 commits
    • Matt Stancliff's avatar
      Return empty string if GETRANGE of empty string · b20df972
      Matt Stancliff authored
      Previously, GETRANGE of a key containing nothing ("")
      would allocate a large (size_t)-1 return value causing
      crashes on 32bit builds when it tried to allocate the
      4 GB return string.
      b20df972
    • Matt Stancliff's avatar
      Increase size of range request in getrange · f0e306f4
      Matt Stancliff authored
      32 bit builds don't have a big enough long to capture
      the same range as a 64 bit build.  If we use "long long"
      we get proper size limits everywhere.
      
      Also updates size of unsigned comparison to fit new size of `end`.
      
      Fixes #1981
      f0e306f4
  4. 01 Sep, 2014 2 commits
  5. 26 Aug, 2014 3 commits
  6. 25 Aug, 2014 10 commits
  7. 18 Aug, 2014 9 commits
  8. 15 Aug, 2014 1 commit
  9. 13 Aug, 2014 3 commits
  10. 12 Aug, 2014 3 commits
  11. 08 Aug, 2014 2 commits
    • antirez's avatar
      representRedisNodeFlags() moved into right code section. · ded57795
      antirez authored
      The funciton was also modified in order to be more standalone and
      produce an output without trailing spaces, making the reuse simpler.
      The global variable was renamed in cammel case as most other Redis
      globals, except the main ones we refer too many times, like 'server'.
      ded57795
    • charsyam's avatar
      Refactor cluster flag printing · de5465ba
      charsyam authored
      Less copy/paste code duplication.
      
      Closes #952
      de5465ba