mirror of
https://codeberg.org/redict/redict.git
synced 2025-01-22 16:18:28 -05:00
disable LZF compression since it's not able to load the DB for now, the load part is missing
This commit is contained in:
parent
d07519372b
commit
40c32c3e49
2
redis.c
2
redis.c
@ -1691,7 +1691,7 @@ static int rdbSaveStringObject(FILE *fp, robj *obj) {
|
||||
|
||||
/* Try LZF compression - under 20 bytes it's unable to compress even
|
||||
* aaaaaaaaaaaaaaaaaa so to try is just useful to make the CPU hot */
|
||||
if (len > 20) {
|
||||
if (0 && len > 20) {
|
||||
int retval;
|
||||
|
||||
retval = rdbSaveLzfStringObject(fp,obj);
|
||||
|
Loading…
Reference in New Issue
Block a user