Home
last modified time | relevance | path

Searched refs:lookupKeyWrite (Results 1 – 16 of 16) sorted by relevance

/f-stack/app/redis-5.0.5/src/
H A Dt_string.c80 if ((flags & OBJ_SET_NX && lookupKeyWrite(c->db,key) != NULL) || in setGenericCommand()
81 (flags & OBJ_SET_XX && lookupKeyWrite(c->db,key) == NULL)) in setGenericCommand()
197 o = lookupKeyWrite(c->db,c->argv[1]); in setrangeCommand()
315 if (lookupKeyWrite(c->db,c->argv[j]) != NULL) { in msetGenericCommand()
343 o = lookupKeyWrite(c->db,c->argv[1]); in incrDecrCommand()
403 o = lookupKeyWrite(c->db,c->argv[1]); in incrbyfloatCommand()
437 o = lookupKeyWrite(c->db,c->argv[1]); in appendCommand()
H A Dt_list.c199 robj *lobj = lookupKeyWrite(c->db,c->argv[1]); in pushGenericCommand()
575 robj *dobj = lookupKeyWrite(c->db,c->argv[2]); in rpoplpushCommand()
652 lookupKeyWrite(receiver->db,dstkey); in serveClientBlockedOnList()
695 o = lookupKeyWrite(c->db,c->argv[j]); in blockingPopGenericCommand()
756 robj *key = lookupKeyWrite(c->db, c->argv[1]); in brpoplpushCommand()
H A Dexpire.c416 if (lookupKeyWrite(c->db,key) == NULL) { in expireGenericCommand()
507 if (lookupKeyWrite(c->db,c->argv[1])) { in persistCommand()
H A Dt_set.c268 set = lookupKeyWrite(c->db,c->argv[1]); in saddCommand()
320 srcset = lookupKeyWrite(c->db,c->argv[1]); in smoveCommand()
321 dstset = lookupKeyWrite(c->db,c->argv[2]); in smoveCommand()
805 lookupKeyWrite(c->db,setkeys[j]) : in sinterGenericCommand()
942 lookupKeyWrite(c->db,setkeys[j]) : in sunionDiffGenericCommand()
H A Ddb.c152 robj *lookupKeyWrite(redisDb *db, robj *key) { in lookupKeyWrite() function
164 robj *o = lookupKeyWrite(c->db, key); in lookupKeyWriteOrReply()
217 if (lookupKeyWrite(db,key) == NULL) { in setKey()
888 if (lookupKeyWrite(c->db,c->argv[2]) != NULL) { in renameGenericCommand()
952 o = lookupKeyWrite(c->db,c->argv[1]); in moveCommand()
960 if (lookupKeyWrite(dst,c->argv[1]) != NULL) { in moveCommand()
H A Dhyperloglog.c1182 robj *o = lookupKeyWrite(c->db,c->argv[1]); in pfaddCommand()
1262 o = lookupKeyWrite(c->db,c->argv[1]); in pfcountCommand()
1341 robj *o = lookupKeyWrite(c->db,c->argv[1]); in pfmergeCommand()
1500 o = lookupKeyWrite(c->db,c->argv[2]); in pfdebugCommand()
H A Dblocked.c266 robj *o = lookupKeyWrite(rl->db,rl->key); in handleClientsBlockedOnKeys()
H A Dt_zset.c1600 zobj = lookupKeyWrite(c->db,key); in zaddGenericCommand()
2208 robj *obj = lookupKeyWrite(c->db,c->argv[j]); in zunionInterGenericCommand()
3157 zobj = lookupKeyWrite(c->db,key); in genericZpopCommand()
3269 o = lookupKeyWrite(c->db,c->argv[j]); in blockingGenericZpopCommand()
H A Dt_hash.c452 robj *o = lookupKeyWrite(c->db,key); in hashTypeLookupWriteOrCreate()
H A Dbitops.c480 robj *o = lookupKeyWrite(c->db,c->argv[1]); in lookupStringForBitCommand()
H A Dt_stream.c1059 robj *o = lookupKeyWrite(c->db,key); in streamTypeLookupWriteOrCreate()
1734 o = lookupKeyWrite(c->db,c->argv[2]); in xgroupCommand()
H A Ddebug.c492 if (lookupKeyWrite(c->db,key) != NULL) { in debugCommand()
H A Dserver.h1824 robj *lookupKeyWrite(redisDb *db, robj *key);
H A Dmodule.c1523 value = lookupKeyWrite(ctx->client->db,keyname); in RM_OpenKey()
H A Dcluster.c4896 if (!replace && lookupKeyWrite(c->db,c->argv[1]) != NULL) { in restoreCommand()
/f-stack/app/redis-5.0.5/
H A DREADME.md368 * `lookupKeyRead()` and `lookupKeyWrite()` are used in order to get a pointer to the value associat…