English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية

Redis Psetex Command

Redis Strings (string)

The Redis Psetex command sets the survival time of the key in milliseconds.

Syntax

The basic syntax of the redis Psetex command is as follows:

redis 127.0.0.1:6379>  PSETEX  key1 EXPIRY_IN_MILLISECONDS  value1

Available Versions

>= 2.6.0

Return Value

Returns OK when the setting is successful.

Online Examples

redis 127.0.0.1:6379>  PSETEX  mykey 1000  "Hello"
OK
redis 127.0.0.1:6379>  PTTL  mykey
999
redis 127.0.0.1:6379>  GET  mykey
1)  "Hello"

Redis Strings (string)