05:25:05 GMT I have a simple setInterval() func and every x ms i'd like to grab the next key/value in redis. I'm thinking about just keeping track of the current index with a variable, and every x ms accessing the item in redis at that index. How do I access a key or value by it's index? Additionally, is there a better way to do this? 08:35:19 GMT orbyt_: there's the SCAN command 16:48:59 GMT minus Yea, I did come across that. I ended up just using an index as an items key, and that simplified things. Couldn't come across any plain examples for using the scan command with the nodejs client. 16:52:53 GMT predictable key names are the better solution anyway, orbyt_