Sorted Set

ZCOUNT

Returns the number of elements in the sorted set stored at key filterd by score.

Arguments

keybodystrrequired

The key to get.

minbodyint | strrequired

The minimum score to filter by.

Use -inf to effectively ignore this filter.

Use (number to exclude the value.

maxbodyint | strrequired

The maximum score to filter by.

Use +inf to effectively ignore this filter.

Use (number to exclude the value.

Response

intrequired

The number of elements where score is between min and max.

Example
redis.zadd("key",     { score: 1, member: "one"},     { score: 2, member: "two" },)elements = redis.zcount("key", "(1", "+inf")print(elements); # 1
Loading search…