MCPcopy Create free account
hub / github.com/F-Stack/f-stack / lookupKeyRead

Function lookupKeyRead

app/redis-6.2.6/src/db.c:151–153  ·  view source on GitHub ↗

Like lookupKeyReadWithFlags(), but does not use any flag, which is the * common case. */

Source from the content-addressed store, hash-verified

149/* Like lookupKeyReadWithFlags(), but does not use any flag, which is the
150 * common case. */
151robj *lookupKeyRead(redisDb *db, robj *key) {
152 return lookupKeyReadWithFlags(db,key,LOOKUP_NONE);
153}
154
155/* Lookup a key for write operations, and as a side effect, if needed, expires
156 * the key if its TTL is reached.

Callers 15

processGopherRequestFunction · 0.85
touchCommandFunction · 0.85
hmgetCommandFunction · 0.85
georadiusGenericFunction · 0.85
geohashCommandFunction · 0.85
geoposCommandFunction · 0.85
mgetCommandFunction · 0.85
stralgoLCSFunction · 0.85
bitopCommandFunction · 0.85
bitposCommandFunction · 0.85
bitfieldGenericFunction · 0.85
pfcountCommandFunction · 0.85

Calls 1

lookupKeyReadWithFlagsFunction · 0.85

Tested by

no test coverage detected