Hash

HEXPIRETIME

Retrieves the expiration time of field(s) in a hash in seconds.

Arguments

keybodystrrequired

The key of the hash.

fieldsbodyUnion[str, List[str]]required

The field or list of fields to retrieve the expiration time for.

Response

List[int]required

A list of integers representing the expiration time in seconds since the Unix epoch.

  • -2 if the field does not exist in the hash or if the key doesn't exist.
  • -1 if the field exists but has no associated expiration.

For more details, see HEXPIRETIME documentation.

Example
redis.hset(hash_name, field, value)redis.hexpireat(hash_name, field, int(time.time()) + 10)assert redis.hexpiretime(hash_name, field) == [1697059200]
Loading search…