EXPIRE key seconds */
| 784 | |
| 785 | /* EXPIRE key seconds */ |
| 786 | void expireCommand(client *c) { |
| 787 | expireGenericCommand(c,mstime(),UNIT_SECONDS); |
| 788 | } |
| 789 | |
| 790 | /* EXPIREAT key time */ |
| 791 | void expireatCommand(client *c) { |
nothing calls this directly
no test coverage detected