# 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/mcxkf3a
GRPC 連接池的設計與實現**
前言--在分佈式高併發服務器中,client 到 server 以及 server 中的多個節點之間的連接往往使用連接池來管理。簡單來說就是將提前創建好的連接保存在池中,當有請求到來時,直接使用連接池中的連接對 server 端訪問,省去了創建連接和銷燬連接的開銷 (TCP 建立連接時的三次握手和釋放連接時的四次揮手),從而提高了性能。目錄設計原則 基本原理 GRPC 特性 GR ⌘ Read more