# 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/getqytq
Golang 的 協程調度機制 與 GOMAXPROCS 性能調優**
【導讀】本文完整介紹了 go 協程的調度機制。前序 正確地認識 G , M , P 三者的關係,能夠對協程的調度機制有更深入的理解!本文將會完整介紹完 go 協程的調度機制,包含: 調度對象的主要組成 各對象的關係 與 分工 gorutine 協程是如何被執行的 內核線程 sysmon 對 gorutine 的管理 gorutine 協程中斷掛起 與 恢復 G ⌘ Read more