class Redis

def llen(key)

Get the length of a list.
def llen(key)
  synchronize do
    @client.call(:llen, key)
  end
end