module Redis::Commands::Keys

def pexpiretime(key)

Returns:
  • (Integer) - expiry time specified as number of milliseconds from UNIX Epoch

Parameters:
  • key (String) --
def pexpiretime(key)
  send_command([:pexpiretime, key])
end