Upstash Documentation

LRANGE

Get range of elements.
2 min read

Use LRANGE to read a range of elements from a list.

Both <start> and <stop> are zero-based, inclusive, and may be negative to count from the tail, so LRANGE key 0 -1 returns the whole list and LRANGE key 0 9 returns the first ten elements. Out-of-range indexes are clamped instead of producing an error, and a range that selects nothing, or a missing key, returns an empty list.

The command copies the requested range into the reply, so reading a large list in one call is expensive: page through it with successive ranges when the list is big.

Syntax#

Arguments#

ArgumentRequiredRepeatableDescription
<key>YesNoRedis key targeted by the command.
<start>YesNoStart index; negative values count from the end.
<stop>YesNoStop index, inclusive; negative values count from the end.

Response#

The reply reports the result of the operation. Error replies have the same shape in RESP2 and RESP3 and are surfaced as exceptions by the SDKs below.

ProtocolReply
RESP2Array of bulk-string values
RESP3Array of bulk-string values
Note

Client libraries often decode bulk strings, maps, sets, and numeric strings into language-native values. The table describes the Redis wire reply.

Examples#

TCP examples use the TLS REDIS_URL from the Upstash console. REST examples use UPSTASH_REDIS_REST_URL and UPSTASH_REDIS_REST_TOKEN.

Redis CLI
@upstash/redis
upstash_redis
ioredis
node-redis
redis-py
go-redis
jedis
redis-rs