I have simple redis list key => "supplier_id"
Now all I want it retrieve all value of list without actually iterating over or popping the value from list
Example to retrieve all the value from a list Now I have iterate over redis length
element = []
0.upto(redis.llen("supplier_id")-1) do |index|
element << redis.lindex("supplier_id",index)
end
can this be done without the iteration perhap with better redis modelling . can anyone suggest