# 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/72cr2fq
從 Golang 調度器的作者視角探究其設計之道!**
導語 \\| Golang 核心開發人員、goroutine 調度的設計者 Dmitry Vyukov,在 2019 年的一個 talk 裏深入淺出地闡述了 goroutine 調度的設計思想以及一些優化的細節。本文是筆者結合自身經驗和認知的一點觀後感,採用從零開始層層遞進的方法,總結剖析了其背後的軟件設計思想,希望對讀者更好地理解 goroutine 調度 GMP 模型會有所幫助。前言視頻地址:ht ⌘ Read more