In Redis is it possible to get a range of items from a Set?
I only notice SMEMBERS which gives you all the members. http://redis.io/commands#set
For example, if I have to use SMEMBERS in millions of items everytime, I just want 10 of them from index 33,456 to 33,466.
SMEMBERS will have to generate a full list of millions of items everytime I ask for 10 of them. Isn't that a performance killer? Or is it okay because Redis is fast and meant to be used that way?