1. 24 3月, 2014 1 次提交
    • A
      sdscatvprintf(): guess buflen using format length. · 7a20f096
      antirez 提交于
      sdscatvprintf() uses a loop where it tries to output the formatted
      string in a buffer of the initial length, if there was not enough room,
      a buffer of doubled size is tried and so forth.
      
      The initial guess for the buffer length was very poor, an hardcoded
      "16". This caused the printf to be processed multiple times without a
      good reason. Given that printf functions are already not fast, the
      overhead was significant.
      
      The new heuristic is to use a buffer 4 times the length of the format
      buffer, and 32 as minimal size. This appears to be a good balance for
      typical uses of the function inside the Redis code base.
      
      This change improved INFO command performances 3 times.
      7a20f096
  2. 12 12月, 2013 1 次提交
  3. 05 12月, 2013 1 次提交
  4. 24 7月, 2013 1 次提交
    • A
      sdsrange() does not need to return a value. · f899ab55
      antirez 提交于
      Actaully the string is modified in-place and a reallocation is never
      needed, so there is no need to return the new sds string pointer as
      return value of the function, that is now just "void".
      f899ab55
  5. 23 7月, 2013 1 次提交
  6. 08 7月, 2013 1 次提交
  7. 06 3月, 2013 3 次提交
  8. 19 1月, 2013 1 次提交
    • G
      Fixed many typos. · 1caf0939
      guiquanz 提交于
      Conflicts fixed, mainly because 2.8 has no cluster support / files:
      	00-RELEASENOTES
      	src/cluster.c
      	src/crc16.c
      	src/redis-trib.rb
      	src/redis.h
      1caf0939
  9. 09 11月, 2012 1 次提交
  10. 27 9月, 2012 1 次提交
  11. 14 3月, 2012 2 次提交
  12. 16 1月, 2012 2 次提交
  13. 21 11月, 2011 1 次提交
  14. 02 11月, 2011 2 次提交
  15. 28 10月, 2011 1 次提交
  16. 13 9月, 2011 1 次提交
  17. 25 5月, 2011 1 次提交
  18. 05 5月, 2011 2 次提交
  19. 07 4月, 2011 1 次提交
  20. 02 4月, 2011 1 次提交
  21. 23 3月, 2011 1 次提交
  22. 21 3月, 2011 1 次提交
  23. 27 1月, 2011 1 次提交
  24. 10 12月, 2010 2 次提交
  25. 09 12月, 2010 1 次提交
  26. 23 9月, 2010 2 次提交
  27. 03 9月, 2010 1 次提交
  28. 26 8月, 2010 1 次提交
  29. 05 8月, 2010 1 次提交
  30. 01 7月, 2010 1 次提交
    • A
      redis.c split into many different C files. · e2641e09
      antirez 提交于
      networking related stuff moved into networking.c
      
      moved more code
      
      more work on layout of source code
      
      SDS instantaneuos memory saving. By Pieter and Salvatore at VMware ;)
      
      cleanly compiling again after the first split, now splitting it in more C files
      
      moving more things around... work in progress
      
      split replication code
      
      splitting more
      
      Sets split
      
      Hash split
      
      replication split
      
      even more splitting
      
      more splitting
      
      minor change
      e2641e09
  31. 11 5月, 2010 2 次提交