# 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/yfyvtka
kafka-go 使用指南**
Go 操作 Kafka 之 kafka-goGo 社區中目前有三個比較常用的 kafka 客戶端庫 , 它們各有特點。首先是 IBM/saram(這個庫已經由 Shopify 轉給了 IBM),之前我寫過一篇使用 sarama 操作 Kafka 的教程,相較於 sarama, kafka-go 更簡單、更易用。segmentio/kafka-go 是純 Go 實現,提供了與 kafka 交互的低級 ⌘ Read more