Searched refs:lookupKeyWrite (Results 1 – 16 of 16) sorted by relevance
| /f-stack/app/redis-5.0.5/src/ |
| H A D | t_string.c | 80 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 D | t_list.c | 199 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 D | expire.c | 416 if (lookupKeyWrite(c->db,key) == NULL) { in expireGenericCommand() 507 if (lookupKeyWrite(c->db,c->argv[1])) { in persistCommand()
|
| H A D | t_set.c | 268 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 D | db.c | 152 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 D | hyperloglog.c | 1182 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 D | blocked.c | 266 robj *o = lookupKeyWrite(rl->db,rl->key); in handleClientsBlockedOnKeys()
|
| H A D | t_zset.c | 1600 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 D | t_hash.c | 452 robj *o = lookupKeyWrite(c->db,key); in hashTypeLookupWriteOrCreate()
|
| H A D | bitops.c | 480 robj *o = lookupKeyWrite(c->db,c->argv[1]); in lookupStringForBitCommand()
|
| H A D | t_stream.c | 1059 robj *o = lookupKeyWrite(c->db,key); in streamTypeLookupWriteOrCreate() 1734 o = lookupKeyWrite(c->db,c->argv[2]); in xgroupCommand()
|
| H A D | debug.c | 492 if (lookupKeyWrite(c->db,key) != NULL) { in debugCommand()
|
| H A D | server.h | 1824 robj *lookupKeyWrite(redisDb *db, robj *key);
|
| H A D | module.c | 1523 value = lookupKeyWrite(ctx->client->db,keyname); in RM_OpenKey()
|
| H A D | cluster.c | 4896 if (!replace && lookupKeyWrite(c->db,c->argv[1]) != NULL) { in restoreCommand()
|
| /f-stack/app/redis-5.0.5/ |
| H A D | README.md | 368 * `lookupKeyRead()` and `lookupKeyWrite()` are used in order to get a pointer to the value associat…
|