Back to Yugabyte Db

EXPIRE

docs/content/stable/yedis/api/expire.md

2026.1.0.0-b25524 B
Original Source

Synopsis

EXPIRE key timeout

Set a timeout on key (in seconds). After the timeout has expired, the key will automatically be deleted.

Return value

Returns integer reply, specifically 1 if the timeout was set and 0 if key does not exist.

Examples

sh
$ SET yugakey "Yugabyte"
"OK"
sh
$ EXPIRE yugakey 10
(integer) 1
sh
$ EXPIRE non-existent-key 10
(integer) 0

See also

expireat, ttl, pttl, set