# 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/5d6jcvq
Go 如何實現長連接**
科普        長連接,也被稱爲持久連接,是對同一個服務器的多次請求,使用相同的 TCP 連接來發送。這與短連接(每一個請求建立一個新的 TCP 連接)形成對比。長連接可以減少建立和關閉連接的時間開銷,提升網絡通信效率。例如在 HTTP/1.1 中,默認就是採用長連接的方式,大大提高了 web 頁面的加載速度。客戶端和服務器之間建立的 TCP 連接在傳輸完數據之後並不立即斷開,而是可以繼續被用 ⌘ Read more