Remove an element from a set.
Remove an element from a set.
redisSRem(set, element)
set |
The set name (character) from which to remove the element. |
element |
The element to remove (not and index, but the actual element value). |
The set element matching the specified element will be removed from the set.
TRUE upon successful removal, FALSE otherwise.
B. W. Lewis
http://redis.io/commands
## Not run: redisConnect() redisSAdd('set', 5) redisSAdd('set', 7) redisSMembers('set') redisSRem('set',5) redisSMembers('set') ## End(Not run)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.