API ReferenceSorted Sets
ZCard
Get the number of members in a sorted set
Syntax
Redix.ZCard(key, callback)Parameters
Prop
Type
Returns
Prop
Type
Example
Redix.ZCard('leaderboard:kills', function(err, count)
if not err then
print('Total players in leaderboard:', count)
end
end)