# 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/4asdlpq
Go:基於 Redis Stream 構建可擴展事件流**
事件流架構是獨立擴展某些組件的好方法。當提到事件流工具時,這方面的主流似乎是 Kafka,但也有一些其他實用的流工具,比如 NATS 流 / Jetstream, NSQ 或 Redis 流。今天我將寫一些關於 Redis Stream 基本用法的筆記,我們將構建一個發佈者和一個消費者的例子,並使用運行在 docker 上的 Redis 服務器做本地測試。發佈者將使用 XADD 命令發送一些消息到 ⌘ Read more