| 294 | } |
| 295 | |
| 296 | int redis_key::pexpireat(const char* key, long long int stamp) |
| 297 | { |
| 298 | return pexpireat(key, strlen(key), stamp); |
| 299 | } |
| 300 | |
| 301 | int redis_key::pexpireat(const char* key, size_t len, long long int stamp) |
| 302 | { |
nothing calls this directly
no test coverage detected