[WIP] Post Roulette feed where it sends you random posts by users you follow, unbiased by post age.
at main 19 lines 283 B view raw
1require "redis" 2 3module PostRouletteFeedRedis 4 refine Redis do 5 def watching?(did) 6 exists? watching_did_key(did) 7 end 8 9 def watch(did) 10 set watching_did_key(did), true 11 end 12 13 private 14 15 def watching_did_key(did) 16 "watching:#{did}" 17 end 18 end 19end