# 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/mjdnkja
golang 實現 Pub-Sub 模式**
一、什麼是 Pub/Sub 模式----------------Pub/Sub 是一種可擴縮的異步消息傳遞服務,可將生成消息的服務與處理這些消息的服務分離開來。Pub/Sub 允許服務異步通信,延遲時間大約爲 100 毫秒。Pub/Sub 用於流式分析和數據集成流水線,以注入和分發數據。無論是作爲用於消息整合的消息傳遞中間件,還是作爲並行處理任務的隊列,它都非常有效。通過 Pub/Sub,可以創建 ⌘ Read more