more work done for diskstore without trying to compile, more work needed to build again.

This commit is contained in:
antirez
2010-12-30 16:41:36 +01:00
parent 1609a1c42d
commit 4ab988238f
7 changed files with 105 additions and 23 deletions

View File

@ -66,6 +66,9 @@ int dbAdd(redisDb *db, robj *key, robj *val) {
} else {
sds copy = sdsdup(key->ptr);
dictAdd(db->dict, copy, val);
if (server.ds_enabled) {
/* FIXME: remove entry from negative cache */
}
return REDIS_OK;
}
}