PSETEX (deprecated)

As of Redis version 2.6.12, this command is regarded as deprecated.

It can be replaced by [SET]({{< relref "/commands/set" >}}) with the PX argument when migrating or writing new code.

Syntax
PSETEX key milliseconds value
Available since:
2.6.0
Time complexity:
O(1)
ACL categories:
@write, @string, @slow,

PSETEX works exactly like SETEX with the sole difference that the expire time is specified in milliseconds instead of seconds.

Examples

PSETEX mykey 1000 "Hello" PTTL mykey GET mykey

RESP2/RESP3 Reply

Simple string reply: OK.
RATE THIS PAGE
Back to top ↑