class Redis

def strlen(key)

Get the length of the value stored in a key.
def strlen(key)
  synchronize do
    @client.call(:strlen, key)
  end
end