# 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/dncpbbq
Go 原生網絡輪詢器(netpoller)剖析**
關於 C10KC10K 問題是上個十年的問題,C10K 的意思就是服務端單機不能承受超過 1w 個客戶端連接,就算擴容對應的 CPU、內存的物理資源也無效,在 2022 年看來,這個問題看起來很奇怪,現在各個大廠吹噓的不都是百萬甚至千萬連接的服務器嗎?1w 連接算啥?以史爲鑑, 可以知興替我們可以瞭解下當初 C10K 問題的背景是啥,瓶頸在什麼地方,再用發展的眼光看待問題,可以收穫更多。一個服務器 ⌘ Read more