Easy Tutorial
❮ Hashes Hmset Sorted Sets Zrevrank ❯

Redis Scard Command

Redis Sets

The Redis Scard command returns the number of elements in a set.

Syntax

The basic syntax for the redis Scard command is as follows:

redis 127.0.0.1:6379> SCARD KEY_NAME

Available Versions

= 1.0.0

Return Value

The number of elements in the set. Returns 0 when the set key does not exist.

Example

redis 127.0.0.1:6379> SADD myset "hello"
(integer) 1
redis 127.0.0.1:6379> SADD myset "foo"
(integer) 1
redis 127.0.0.1:6379> SADD myset "hello"
(integer) 0
redis 127.0.0.1:6379> SCARD myset
(integer) 2

Redis Sets

❮ Hashes Hmset Sorted Sets Zrevrank ❯