# 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/lqsicqa
golang 網絡框架 netpoll-Multi-Reactor 模型- 核心源碼分析**
現如今提起網絡大家的第一反應就是 epoll,而實際工程開發中絕大部分的情況都會優先考慮採用已有的一些開源網絡框架來做功能的開發。網絡框架不同的語言有不同的實現,例如 java 中大名鼎鼎的 netty,再比如 c++ 中的 libevent、boost::asio、muduo 等,golang 中目前在開源社區比較有影響力的網絡框架有 gnet、evio、netpoll(字節開源) 這幾個。 ⌘ Read more