Skip to content

Latest commit

 

History

History
41 lines (27 loc) · 1.44 KB

File metadata and controls

41 lines (27 loc) · 1.44 KB
code type title
true
page
expireat

expireat

Sets an expiration timestamp on a key. After the timestamp has been reached, the key will automatically be deleted.

[Redis documentation]

Arguments

expireat(key, timestamp, [options]);

Arguments Type Description
key
string
Key
timestamp
integer
Expiration timestamp (Epoch format)
options
object
Optional query arguments

options

The options arguments can contain the following option properties:

Property Type (default) Description
queuable
boolean (true)
If true, queues the request during downtime, until connected to Kuzzle again

Resolve

Resolves to a boolean telling whether the operation was successful or not.

Usage

<<< ./snippets/expireat.js