# 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/x46snkq
netpoller 原理分享**
Golang netpoller 的原理早在很久以前研究過一次,當時寫過一篇文章,最近部門正好有一次技術分享的名額,於是把這塊知識就重溫了一遍,做了一次關於 netpoll 的分享,也算是炒冷飯了,下面是分享的 ppt 內容。 Golang 網絡庫調用棧 思考問題:當沒有客戶端請求時候函數會阻塞在 Accept 上面,此時的阻塞是發生了進程切換,讓出 CPU 了嗎?當客戶端已經建立連接,但是沒 ⌘ Read more