Return the number of elements contained in the specified set.
返回包含在指定的一组中的元素的数量。
用法----------Usage----------
redisSCard(set)
参数----------Arguments----------
参数:set
A string set identifier.
一个字符串集标识符。
值----------Value----------
The function returns an integer corresponding to the number of elements in the set. Zero is returned if the set is empty or if the set does not exist.
该函数返回一个对应的集合中的元素的数目的整数。如果集是空的,或如果集不存在,则返回零。
(作者)----------Author(s)----------
B. W. Lewis
参考文献----------References----------
参见----------See Also----------
redisSAdd
redisSAdd
实例----------Examples----------
## Not run: [#不运行:]
redisConnect()
redisSAdd("set",5)
redisSCard("set")