pexpire method
pexpire
Implementation
Future<bool> pexpire(String key, Duration timeout) async {
return await _runWithRetryNew(() async {
return (await RespCommandsTier1(_client!).pexpire(key, timeout))
.toInteger()
.payload ==
1;
});
}