03:13:57 GMT hello, I want to store time based samples in redis to retrieve in order of insertion. something like a list of pairs (time1, value1), (time2, value2), (time3, value3) , etc.. 03:14:42 GMT would a list with appends be the most appropriate solution here given that samples taken each second would be inserted in order? 04:39:57 GMT unomystEz: a sorted set works for that if you use the time as score 04:40:04 GMT (and values are distinct) 08:19:37 GMT Hello... I have a question related pattern for MATCH parameter. Is there a way I can specify SCAN to match one of the listed patterns? For e.g. SCAN 0 MATCH *a?{.jpg, .txt} -- to get all keys matching either *a.jpg or *a.txt