# 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/krvcfja
Go 語言操作 NSQ 消息隊列**
【導讀】本文介紹了 NSQ 消息隊列和 go 語言 NSQ 交互。網上看了好多,都是抄個官網 README,很多重要的東西不說清楚。只好自己研究了一下。NSQ 的全家桶介紹----------nsqd:守護進程,客戶端通信。默認端口 4150(TCP) 4151(HTTP) nsqlookupd:相當於一個路由器。客戶端可以經由它發現生產者、nsqd 廣播的話題。一個 nsqlookupd ⌘ Read more