SREM
Synopsis
SREM key value [value ...]
This command removes one or more specified members from the set that is associated with the given key
.
Return value
Returns the total number of existed members that were removed from the set.
Examples
$ SADD yuga_world "America"
1
$ SADD yuga_world "Moon"
1
$ SREM yuga_world "Moon"
1
$ SREM yuga_world "Moon"
0