class Redis

def type(key)

Determine the type stored at key.
def type(key)
  synchronize do
    @client.call(:type, key)
  end
end