rpop #
Removes and returns the last element of a list.
rpop(key, [options], [callback]) #
Arguments | Type | Description |
---|---|---|
key | string | Key identifier |
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 the value of the removed item.
Usage #
<?php
use \Kuzzle\Kuzzle;
$kuzzle = new Kuzzle('localhost');
try {
$value = $kuzzle->memoryStorage()->rpop('key');
}
catch (ErrorException $e) {
}
Callback response:
"foo"
Edit this page on Github(opens new window)