SDK
SDK PHP v3.x
1

You are currently looking at the documentation of a previous version of Kuzzle. We strongly recommend that you use the latest version. You can also use the version selector in the top menu.

lrange #

Returns the list elements between the start and stop positions (inclusive).

[Redis documentation]


lrange(key, start, stop, [options], callback) #

ArgumentsTypeDescription
keystringKey identifier
startintStart position
stopintEnd position
optionsJSON ObjectOptional parameters
callbackfunctionCallback

Options #

OptionTypeDescriptionDefault
queuablebooleanMake this request queuable or nottrue

Callback Response #

Returns an array of retrieved values.

Usage #

<?php
use \Kuzzle\Kuzzle;
$kuzzle = new Kuzzle('localhost');
try {
  $values = $kuzzle->memoryStorage()->lrange('key', 0, 1);
}
catch (ErrorException $e) {
}

Callback response:

["foo", "bar"]