Skip to content

Commit 93fae76

Browse files
Introduce setKeyWithDictEntry, which is like setKey(), but accepts an optional dictEntry input: Avoids the second dictFind in SET command
1 parent 8580a59 commit 93fae76

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

src/db.c

+8-1
Original file line numberDiff line numberDiff line change
@@ -323,6 +323,13 @@ void dbReplaceValueWithDictEntry(redisDb *db, robj *key, robj *val, dictEntry *d
323323
* The client 'c' argument may be set to NULL if the operation is performed
324324
* in a context where there is no clear client performing the operation. */
325325
void setKey(client *c, redisDb *db, robj *key, robj *val, int flags) {
326+
setKeyWithDictEntry(c,db,key,val,flags,NULL);
327+
}
328+
329+
/* Like setKey(), but accepts an optional dictEntry input,
330+
* which can be used if we already have one, thus saving the dictFind call.
331+
*/
332+
void setKeyWithDictEntry(client *c, redisDb *db, robj *key, robj *val, int flags, dictEntry *de) {
326333
int keyfound = 0;
327334

328335
if (flags & SETKEY_ALREADY_EXIST)
@@ -337,7 +344,7 @@ void setKey(client *c, redisDb *db, robj *key, robj *val, int flags) {
337344
} else if (keyfound<0) {
338345
dbAddInternal(db,key,val,1);
339346
} else {
340-
dbSetValue(db,key,val,1,NULL);
347+
dbSetValue(db,key,val,1,de);
341348
}
342349
incrRefCount(val);
343350
if (!(flags & SETKEY_KEEPTTL)) removeExpire(db,key);

src/server.h

+1
Original file line numberDiff line numberDiff line change
@@ -3387,6 +3387,7 @@ void dbReplaceValueWithDictEntry(redisDb *db, robj *key, robj *val, dictEntry *d
33873387
#define SETKEY_DOESNT_EXIST 8
33883388
#define SETKEY_ADD_OR_UPDATE 16 /* Key most likely doesn't exists */
33893389
void setKey(client *c, redisDb *db, robj *key, robj *val, int flags);
3390+
void setKeyWithDictEntry(client *c, redisDb *db, robj *key, robj *val, int flags, dictEntry *de);
33903391
robj *dbRandomKey(redisDb *db);
33913392
int dbGenericDelete(redisDb *db, robj *key, int async, int flags);
33923393
int dbSyncDelete(redisDb *db, robj *key);

src/t_string.c

+4-2
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,9 @@ void setGenericCommand(client *c, int flags, robj *key, robj *val, robj *expire,
7373
if (getGenericCommand(c) == C_ERR) return;
7474
}
7575

76-
found = (lookupKeyWrite(c->db,key) != NULL);
76+
dictEntry *de = dbFind(c->db, key->ptr);
77+
robj *o = lookupKeyWriteWithDictEntry(c->db,key,de);
78+
found = (o != NULL);
7779

7880
if ((flags & OBJ_SET_NX && found) ||
7981
(flags & OBJ_SET_XX && !found))
@@ -88,7 +90,7 @@ void setGenericCommand(client *c, int flags, robj *key, robj *val, robj *expire,
8890
setkey_flags |= ((flags & OBJ_KEEPTTL) || expire) ? SETKEY_KEEPTTL : 0;
8991
setkey_flags |= found ? SETKEY_ALREADY_EXIST : SETKEY_DOESNT_EXIST;
9092

91-
setKey(c,c->db,key,val,setkey_flags);
93+
setKeyWithDictEntry(c,c->db,key,val,setkey_flags,de);
9294
server.dirty++;
9395
notifyKeyspaceEvent(NOTIFY_STRING,"set",key,c->db->id);
9496

0 commit comments

Comments
 (0)