Method: Redis#llen

Defined in:
lib/redis.rb

#llen(key) ⇒ Object

Get the length of a list.



299
300
301
302
303
# File 'lib/redis.rb', line 299

def llen(key)
  synchronize do
    @client.call [:llen, key]
  end
end