class Redis

def smove(source, destination, member)

Move a member from one set to another.
def smove(source, destination, member)
  synchronize do
    _bool @client.call(:smove, source, destination, member)
  end
end