Like lookupKeyReadWithFlags(), but does not use any flag, which is the * common case. */
| 203 | /* Like lookupKeyReadWithFlags(), but does not use any flag, which is the |
| 204 | * common case. */ |
| 205 | robj_roptr lookupKeyRead(redisDb *db, robj *key) { |
| 206 | serverAssert(GlobalLocksAcquired()); |
| 207 | return lookupKeyReadWithFlags(db,key,LOOKUP_NONE); |
| 208 | } |
| 209 | robj_roptr lookupKeyRead(redisDb *db, robj *key, uint64_t mvccCheckpoint, AeLocker &locker) { |
| 210 | robj_roptr o; |
| 211 |
no test coverage detected