> ## Documentation Index
> Fetch the complete documentation index at: https://upstash.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# HPERSIST

> Remove the expiration from one or more hash fields.

## Arguments

<ParamField body="key" type="str" required>
  The key of the hash.
</ParamField>

<ParamField body="fields" type="Union[str, List[str]]" required>
  The field or list of fields within the hash to remove the expiry from.
</ParamField>

## Response

<ResponseField type="List[int]" required>
  A list of integers indicating the result for each field:

  * `-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 set.
  * `1` if the expiration was successfully removed.

  For more details, see [HPERSIST documentation](https://redis.io/commands/hpersist).
</ResponseField>

<RequestExample>
  ```py Example theme={"system"}
  redis.hset(hash_name, field, value)
  redis.hpexpire(hash_name, field, 1000)

  assert redis.hpersist(hash_name, field) == [1]
  ```
</RequestExample>
