EXPIRE key seconds */
| 535 | |
| 536 | /* EXPIRE key seconds */ |
| 537 | void expireCommand(client *c) { |
| 538 | expireGenericCommand(c,mstime(),UNIT_SECONDS); |
| 539 | } |
| 540 | |
| 541 | /* EXPIREAT key time */ |
| 542 | void expireatCommand(client *c) { |
nothing calls this directly
no test coverage detected