class Reliable::List

Attributes

key[R]

Public Class Methods

new(key, redis) click to toggle source
# File lib/reliable/list.rb, line 5
def initialize(key, redis)
  @key = key
  @redis = redis
end

Public Instance Methods

llen() click to toggle source
# File lib/reliable/list.rb, line 10
def llen
  @redis.llen(key)
end