Skip to content
This repository has been archived by the owner on Sep 28, 2022. It is now read-only.

Latest commit

 

History

History
53 lines (34 loc) · 1.21 KB

File metadata and controls

53 lines (34 loc) · 1.21 KB
code type title description
true
page
pexpire
MemoryStorage:pexpire

pexpire

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

[Redis documentation]


pexpire(key, ttl, [options], [callback])

Arguments Type Description
key string Key identifier
ttl int Time to live of the key, in milliseconds
options JSON Object Optional parameters
callback function Callback

Options

Option Type Description Default
queuable boolean Make this request queuable or not true

Return Value

Returns the MemoryStorage object to allow chaining.


Callback Response

Returns a boolean specifying if the operation was successful or not.

Usage

<<< ./snippets/pexpire-1.java

Callback response:

true