| 276 | } |
| 277 | |
| 278 | robj *lookupKeyWriteOrReply(client *c, robj *key, robj *reply) { |
| 279 | robj *o = lookupKeyWrite(c->db, key); |
| 280 | if (!o) SentReplyOnKeyMiss(c, reply); |
| 281 | return o; |
| 282 | } |
| 283 | |
| 284 | bool dbAddCore(redisDb *db, sds key, robj *val, bool fUpdateMvcc, bool fAssumeNew = false, dict_iter *piterExisting = nullptr, bool fValExpires = false) { |
| 285 | serverAssert(fValExpires || !val->FExpires()); |
no test coverage detected