# 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/j2rlpca
gRPC 爲什麼比基於 JSON 的 REST API 快**
兩個主要原因。看了不少關於 REST 與 JSON 和 gRPC 的性能基準測試。其中一些測試顯示,gRPC 將每個請求的延遲減少了一半。那麼,它爲什麼這麼快呢?🤔⚡ 第一個原因是 HTTP/2。HTTP/1.1 的請求和響應是同步的,一次只能處理一個請求。而 HTTP/2 請求是異步的,可以同時發送多個請求,不需要等待前一個請求的響應。減少了等待前一個請求完成的時間,同時連接複用,也避免了 TC ⌘ Read more