pexpire #
Sets a timeout (in milliseconds) on a key. After the timeout has expired, the key will automatically be deleted.
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 #
kuzzle.memoryStorage.pexpire("key", 42000, new ResponseListener<Boolean>() {
@Override
public void onSuccess(Boolean status) {
// callback called once the action has completed
}
@Override
public void onError(JSONObject error) {
}
});Callback response:
true