Upstash Documentation

ARLEN

Get the length of an array.
2 min read

Use ARLEN to get the length of an array, meaning the highest occupied index plus one.

Because arrays are sparse, this is a measure of extent rather than of contents: writing a single value at index 1000 makes ARLEN report 1001 while ARCOUNT still reports 1. Read it as the exclusive upper bound for any full scan of the array.

A key that does not exist has length 0.

See the array command overview for the data model these commands share.

Syntax#

Arguments#

ArgumentRequiredRepeatableDescription
<key>YesNoArray key targeted by the command.

Important points#

  • A length above the signed 64-bit range is returned as a big number reply rather than an integer.

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
RESP2Integer, or bulk string when the length exceeds the signed 64-bit range
RESP3Integer, or Big number when the length exceeds the signed 64-bit range
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
Note

This command is not supported yet in @upstash/redis.

upstash_redis
Note

This command is not supported yet in upstash_redis.

ioredis
node-redis
redis-py
go-redis
jedis
redis-rs