API ReferenceSets
SCard
Get the number of members in a set
Syntax
Redix.SCard(key, callback)Parameters
Prop
Type
Returns
Prop
Type
Example
Redix.SCard('players:online', function(err, count)
if not err then
print('Players online: ' .. count)
if count > 100 then
print('Server is full!')
end
end
end)