Delete a key, value, and associated expiration entry if any, from the DB */
| 515 | |
| 516 | /* Delete a key, value, and associated expiration entry if any, from the DB */ |
| 517 | int dbSyncDelete(redisDb *db, robj *key) { |
| 518 | return db->syncDelete(key); |
| 519 | } |
| 520 | |
| 521 | /* This is a wrapper whose behavior depends on the Redis lazy free |
| 522 | * configuration. Deletes the key synchronously or asynchronously. */ |
no test coverage detected