# 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/43h7riq
golang 協程設計與調度原理**
協程設計 \\- GMP 模型-------------線程是操作系統調度到 CPU 中執行的基本單位,多線程總是交替式地搶佔 CPU 的時間片,線程在上下文的切換過程中需要經過操作系統用戶態與內核態的切換。golang 的協程 (G) 依然運行在工作線程 (M) 之上,但是藉助語言的調度器,協程只需要在用戶態即可完成切換,工作線程是感受不到協程存在的。golang 在設計上通過邏輯處理器 (P) 建 ⌘ Read more