]> git.saurik.com Git - redis.git/blobdiff - src/sds.h
RDB hashes loading, fixed another bug in the loading of HT-encoded hashes: when the...
[redis.git] / src / sds.h
index eff1b03e800bafa1232e25e3b585c6c75070ff26..b00551b417d1c7317819c0fc292789d4afa4711d 100644 (file)
--- a/src/sds.h
+++ b/src/sds.h
@@ -31,6 +31,8 @@
 #ifndef __SDS_H
 #define __SDS_H
 
+#define SDS_MAX_PREALLOC (1024*1024)
+
 #include <sys/types.h>
 #include <stdarg.h>
 
@@ -62,6 +64,7 @@ size_t sdsavail(sds s);
 sds sdsgrowzero(sds s, size_t len);
 sds sdscatlen(sds s, void *t, size_t len);
 sds sdscat(sds s, char *t);
+sds sdscatsds(sds s, sds t);
 sds sdscpylen(sds s, char *t, size_t len);
 sds sdscpy(sds s, char *t);