- Usage:
SETEX key seconds value
- Complexity:
- O(1)
- Since:
- 2.0.0
Set key
to hold the string value
and set key
to timeout after a given
number of seconds.
This command is equivalent to:
SET key value EX seconds
An error is returned when seconds
is invalid.
Examples
SETEX mykey 10 "Hello"
TTL mykey
GET mykey
See also
TTL