]> git.saurik.com Git - redis.git/commit
sds.c new function sdsRemoveFreeSpace().
authorantirez <antirez@gmail.com>
Wed, 14 Mar 2012 09:13:23 +0000 (10:13 +0100)
committerantirez <antirez@gmail.com>
Wed, 14 Mar 2012 09:13:23 +0000 (10:13 +0100)
commit9555f8f21b9f1780de307c19da268ef63f7c2ae9
tree4218c1067689b2c9c8c8e72bb2798ff82595520f
parent529bde82ecf1e566f2db103e5c49402262d3638c
sds.c new function sdsRemoveFreeSpace().

The new function is used in order to resize the string allocation so
that only the minimal allocation possible is used, removing all the free
space at the end of the string normally used to improve efficiency of
concatenation operations.
src/sds.c