Set the expiry time for a key in the cache.
(key: str, expiry: int)
| 147 | |
| 148 | |
| 149 | def expire(key: str, expiry: int) -> None: |
| 150 | """Set the expiry time for a key in the cache.""" |
| 151 | _backend.expire(key, expiry) |
| 152 | |
| 153 | |
| 154 | def delete(key: str) -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…