# 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/4kbhawa
goev - 一款基於 Go 語言的高性能、輕量級、非阻塞、I-O 事件驅動網絡框架**
背景介紹在進行 Go 語言的 TCP 網絡編程時,我們通常使用標準庫(go net),但是標準庫的協程壓力較大,因此我們需要一種更輕量級、高性能的非阻塞 I/O 事件驅動網絡框架。goev 就是爲此而生的。用一句話介紹 goev 項目就是:“goev is a lightweight, concise i/o event demultiplexer implementation in Go”。項目 ⌘ Read more