1. 27 Aug, 2014 32 commits
  2. 28 Jul, 2014 3 commits
  3. 25 Jul, 2014 1 commit
  4. 23 Jul, 2014 3 commits
    • antirez's avatar
      Fix util.c compilation by including stdint.h. · d558af8e
      antirez authored
      d558af8e
    • antirez's avatar
      Faster ll2string() implementation. · e426e778
      antirez authored
      Based on ideas documented in this blog post:
      
      https://www.facebook.com/notes/facebook-engineering/three-optimization-tips-for-c/10151361643253920
      
      The original code was modified to handle signed integers, reformetted to
      fit inside the Redis code base, and was stress-tested with a program
      in order to validate the implementation against snprintf().
      
      Redis was measured to be measurably faster from the point of view of
      clients in real-world operations because of this change, since sometimes
      number to string conversion is used extensively (for example every time
      a GET results into an integer encoded object to be returned to the
      user).
      e426e778
    • antirez's avatar
      PFSELFTEST: less false positives. · 8a44e108
      antirez authored
      This is just a quickfix, for the nature of the test the right way to fix
      it is to average the error of N runs, since otherwise it is always
      possible to get a false positive with a bad run, or to minimize too much
      this possibility we may end testing with too much "large" error ranges.
      8a44e108
  5. 22 Jul, 2014 1 commit