class Redis

def sadd(key, value)

Add a member to a set.
def sadd(key, value)
  synchronize do
    _bool @client.call(:sadd, key, value)
  end
end