# 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/l7no3dq
Golang MGP 調度器**
【導讀】本文詳細介紹了 Go 語言的 MGP 模型中調度器的設計和演進。Go 調度器我們知道 Go 裏面有成千上萬 coroutine 需要調度執行,而這裏面起關鍵作用的就是 Go 的調度器,那麼 Go 的調度器在哪裏呢?因爲我們寫 Go 代碼的時候從未顯式創建過調度器實例。爲了瞭解調度器,我們先來了解下 Go 的運行時(Runtime)。爲什麼要有 Runtime-------------開銷上 ⌘ Read more