0
我們使用redis來顯示在論壇中提出的問題的回覆數量,並且有一個篩選器可以篩選日,月,周和年的回覆數量。redis with timestamp + Rails
我們只在redis鍵存儲日期,如"question_#{question_id}_#{date with out timestamp}"
這個日期是UTC日期。
現在我們需要在密鑰中存儲時間戳。如果我們添加時間戳,那麼它將爲每個回覆創建一個新密鑰。請幫助我們如何在特定日期使用redis存儲回覆數。
這可以幫助你http://blog.apiaxle.com/post/storing-near-realtime-stats-in-redis/ – Pavan