From: antirez Date: Mon, 30 Jan 2012 09:27:50 +0000 (+0100) Subject: setKey(): call the higher level wrapper setModifiedKey() instead of touchWatchedKey... X-Git-Url: https://git.saurik.com/redis.git/commitdiff_plain/89f6f6abcf882a1eed882a0d97b1e50c034c9530?ds=inline setKey(): call the higher level wrapper setModifiedKey() instead of touchWatchedKey() even if currently they are exactly the same. --- diff --git a/src/db.c b/src/db.c index f7d93e08..3ff7113b 100644 --- a/src/db.c +++ b/src/db.c @@ -110,7 +110,7 @@ void setKey(redisDb *db, robj *key, robj *val) { } incrRefCount(val); removeExpire(db,key); - touchWatchedKey(db,key); + signalModifiedKey(db,key); } int dbExists(redisDb *db, robj *key) {