diff options
author | antirez <antirez@gmail.com> | 2010-05-10 18:50:55 +0200 |
---|---|---|
committer | antirez <antirez@gmail.com> | 2010-05-10 18:50:55 +0200 |
commit | a34e0a2574ee4482ca4ce6282ce6570f2d23d0c2 (patch) | |
tree | 3ffef7f5f73110dac3c2c38a05231645d7ec7d5c /sds.h | |
parent | 89e689c592837b7af30259d0d1432ed7faef92ee (diff) | |
download | redis-a34e0a2574ee4482ca4ce6282ce6570f2d23d0c2.tar.gz |
CONFIG command now supports hot modification of RDB saving parameters.
Diffstat (limited to 'sds.h')
-rw-r--r-- | sds.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -65,6 +65,7 @@ sds sdsrange(sds s, long start, long end); void sdsupdatelen(sds s); int sdscmp(sds s1, sds s2); sds *sdssplitlen(char *s, int len, char *sep, int seplen, int *count); +void sdsfreesplitres(sds *tokens, int count); void sdstolower(sds s); void sdstoupper(sds s); |