# 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/uensuja
Golang 從零到一開發實現 RPC 框架**
內容提要----RPC 框架是分佈式領域核心組件,也是微服務的基礎。今天嘗試從零擼一個 RPC 框架,剖析其核心原理及代碼實現,後續還會逐步迭代追加微服務治理等功能,將之前文章覆蓋的熔斷、限流、負載均衡、註冊發現等功能融合進來,打造一個五臟俱全的 RPC 框架。本文主要內容包括:RPC 實現原理 RPC 協議設計 RPC 服務端實現 RPC 客戶端實現 實現原理---- ⌘ Read more