# I am the Watcher. I am your guide through this vast new twtiverse.
# 
# Usage:
#     https://watcher.sour.is/api/plain/users              View list of users and latest twt date.
#     https://watcher.sour.is/api/plain/twt                View all twts.
#     https://watcher.sour.is/api/plain/mentions?uri=:uri  View all mentions for uri.
#     https://watcher.sour.is/api/plain/conv/:hash         View all twts for a conversation subject.
# 
# Options:
#     uri     Filter to show a specific users twts.
#     offset  Start index for quey.
#     limit   Count of items to return (going back in time).
# 
# twt range = 1 1
# self = https://watcher.sour.is/conv/u65qqza
Redis 實現延遲隊列的方案總結**
redis 是我們項目開發中常見的技術中間件,它除了可以實現常見的分佈式鎖和分佈式緩存功能之外,還可以幫助我們實現很多的功能,如延遲隊列。下面介紹幾種 redis 常見的實現延遲隊列的方案。 1、通過過期 key 通知實現     實現思路:首先開啓 redis 的 key 過期通知,然後在業務中給 key 設置過期時間,到了過期時間後 redis 會自動的將過期的 key 消息推送給 ⌘ Read more