# 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/zfm35kq
基於 etcd 實現 grpc 服務註冊與發現**
0 前言幾周前和大家一起走讀了 grpc-go 客戶端的源碼鏈路,本篇則是想着重探討一下其中涉及到的 “服務發現” 以及 “負載均衡” 的相關內容. 本文會貼近於生產環境,使用到分佈式存儲組件 etcd 作爲 grpc 服務的註冊與發現模塊,並引用 roundRobin 輪詢算法作爲負載均衡策略.1 背景1.1 grpc 源碼-----------本系列探討的主題是由 google 研發的開源 r ⌘ Read more