1. 27 8月, 2014 34 次提交
  2. 28 7月, 2014 3 次提交
  3. 25 7月, 2014 1 次提交
  4. 24 7月, 2014 1 次提交
  5. 23 7月, 2014 1 次提交
    • A
      Faster ll2string() implementation. · e426e778
      antirez 提交于
      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