This is a wrapper whose behavior depends on the Redis lazy free * configuration. Deletes the key synchronously or asynchronously. */
| 332 | /* This is a wrapper whose behavior depends on the Redis lazy free |
| 333 | * configuration. Deletes the key synchronously or asynchronously. */ |
| 334 | int dbDelete(redisDb *db, robj *key) { |
| 335 | return server.lazyfree_lazy_server_del ? dbAsyncDelete(db,key) : |
| 336 | dbSyncDelete(db,key); |
| 337 | } |
| 338 | |
| 339 | /* Prepare the string object stored at 'key' to be modified destructively |
| 340 | * to implement commands like SETBIT or APPEND. |
no test coverage detected