# 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/jb4gmmq
圖文結合!Redis 延遲隊列 golang 高效實踐**
導語 \\| 本文主要講述如何使用 golang 基於 Redis 實現延遲消息隊列組件。希望對有需求的同學有所幫助。 一、背景業務中經常會有這樣的場景:到期後自動執行指定操作; 查詢某個任務是否完成,未完成等待一定時間再次查詢; 回調通知,當回調失敗時,等待後重試;等等還有其他很多類似的場景。 很多時候我們會直接通過一個本地定時器來幫我們完成這個任務。如果我們的系統是多實例分佈式 ⌘ Read more