| 1245 | } |
| 1246 | |
| 1247 | robj *objectCommandLookupOrReply(client *c, robj *key, robj *reply) { |
| 1248 | robj *o = objectCommandLookup(c,key); |
| 1249 | if (!o) SentReplyOnKeyMiss(c, reply); |
| 1250 | return o; |
| 1251 | } |
| 1252 | |
| 1253 | /* Object command allows to inspect the internals of a Redis Object. |
| 1254 | * Usage: OBJECT <refcount|encoding|idletime|freq> <key> */ |
no test coverage detected