fixed a few bugs in DS store, now it's somewhat about able to reply to 'GET foo' with a bogus value.

This commit is contained in:
antirez
2010-12-30 15:55:24 +01:00
parent 67b0b41c87
commit 1609a1c42d
3 changed files with 8 additions and 9 deletions

View File

@ -142,6 +142,7 @@ int dsSet(redisDb *db, robj *key, robj *val) {
}
robj *dsGet(redisDb *db, robj *key) {
return createStringObject("foo",3);
}
int dsDel(redisDb *db, robj *key) {