# 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/mdyj7xa
一文喫透 Go 內置 RPC 原理**
hello 大家好呀,我是小樓,這是系列文《Go 底層原理剖析》的第三篇,依舊分析 Http 模塊。我們今天來看 Go 內置的 RPC。說起 RPC 大家想到的一般是框架,Go 作爲編程語言竟然還內置了 RPC,着實讓我有些喫鯨。從一個 Demo 入手爲了快速進入狀態,我們先搞一個 Demo,當然這個 Demo 是參考 Go 源碼 src/net/rpc/server.go,做了一丟丟的修改。首先 ⌘ Read more