| 197 | } |
| 198 | |
| 199 | int dbAsyncDelete(redisDb *db, robj *key) { |
| 200 | return db->asyncDelete(key); |
| 201 | } |
| 202 | |
| 203 | /* Free an object, if the object is huge enough, free it in async way. */ |
| 204 | void freeObjAsync(robj *key, robj *obj) { |
no test coverage detected