Set a value in the cache with an expiry time.
(key: str, expiry: int, value: str)
| 142 | |
| 143 | |
| 144 | def setex(key: str, expiry: int, value: str) -> None: |
| 145 | """Set a value in the cache with an expiry time.""" |
| 146 | _backend.setex(key, expiry, value) |
| 147 | |
| 148 | |
| 149 | def expire(key: str, expiry: int) -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…