class Redis

def lrange(key, start, stop)

Returns:
  • (Array) -

Parameters:
  • stop (Integer) -- stop index
  • start (Integer) -- start index
  • key (String) --
def lrange(key, start, stop)
  synchronize do |client|
    client.call([:lrange, key, start, stop])
  end
end