| 1328 | } |
| 1329 | |
| 1330 | robj_roptr objectCommandLookupOrReply(client *c, robj *key, robj *reply) { |
| 1331 | robj_roptr o = objectCommandLookup(c,key); |
| 1332 | if (!o) SentReplyOnKeyMiss(c, reply); |
| 1333 | return o; |
| 1334 | } |
| 1335 | |
| 1336 | /* Object command allows to inspect the internals of a Redis Object. |
| 1337 | * Usage: OBJECT <refcount|encoding|idletime|freq> <key> */ |
no test coverage detected