> ## Documentation Index
> Fetch the complete documentation index at: https://upstash-dx-3009-array-sdk-docs.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# ARCOUNT

> Count the occupied slots in an array.

For sparse arrays, this differs from [ARLEN](./arlen), which returns the highest occupied index plus one.

## Arguments

<ParamField body="key" type="str" required>
  The array key.
</ParamField>

## Response

<ResponseField type="int" required>
  The number of slots containing values, or zero for a missing key.
</ResponseField>

<RequestExample>
  ```py Example theme={"system"}
  redis.arset("readings", 1000, "sample")
  print(redis.arcount("readings"))  # 1
  print(redis.arlen("readings"))  # 1001
  ```
</RequestExample>

See the [server command reference](/redis/commands/array/arcount) for protocol details.
