# 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/nztxcpq
寫給 go 開發者的 gRPC 教程 - 服務發現與負載均衡**
對於一個客戶端創建請求的過程conn, err := grpc.Dial("example:8009", grpc.WithInsecure())if err != nil { panic(err)}gRPC 客戶端通過服務發現解析請求,將名稱解析爲一個或多個 IP 地址,以及服務配置 客戶端使用上一步的服務配置、ip 列表、實例化負載均衡策略 負載均衡策略爲每個服務器地址創建一個 ⌘ Read more