# 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/c7mnscq
如何用 Go 實現一個異步網絡庫?**
導語 \\| 在需要高性能、節省資源的場景下,比如海量的連接、很高的併發,我們發現 Go 開始變得喫力,不但內存開銷大,而且還會有頻繁的 goroutine 調度。GC 時間也變得越來越長,甚至還會把系統搞掛。這時,我們就可以考慮用 Go 構建經典的 Reactor 網絡模型,來應對這種場景。一、常見的服務端網絡編程模型在具體講 Reactor 網絡庫的實現前,我們先快速回顧下常見的服務端網絡編程模型 ⌘ Read more