class Redis
def lrange(key, start, stop)
-
(Array
-)
Parameters:
-
stop
(Fixnum
) -- stop index -
start
(Fixnum
) -- start index -
key
(String
) --
def lrange(key, start, stop) synchronize do |client| client.call([:lrange, key, start, stop]) end end