# 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/nwl64ra
寫給 go 開發者的 gRPC 教程 - 超時控制**
導言 一個合理的超時時間是非常必要的,它能提高用戶體驗,提高服務器的整體性能,是服務治理的常見手段之一爲什麼要設置超時--------用戶體驗:很多 RPC 都是由用戶側發起,如果請求不設置超時時間或者超時時間不合理,會導致用戶一直處於白屏或者請求中的狀態,影響用戶的體驗資源利用:一個 RPC 會佔用兩端(服務端與客戶端)端口、cpu、內存等一系列的資源,不合理的超時時間會導致 RPC ⌘ Read more