From: antirez Date: Wed, 14 Mar 2012 09:13:23 +0000 (+0100) Subject: sds.c new function sdsRemoveFreeSpace(). X-Git-Url: https://git.saurik.com/redis.git/commitdiff_plain/f9322fb8ed9d47a79a64e7b72485e08f256f2936?hp=f9322fb8ed9d47a79a64e7b72485e08f256f2936 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. ---