# 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/2ebrbiq
如何更直觀地理解 Go 調度過程**
得益於 Go 語言優秀的運行時調度系統,即使開發人員沒有多線程編程經驗,也能很容易地開發併發程序。調度系統,其中最核心的就是 GMP 的設計,欲深入理解 Go 語言設計的讀者都應該看過這些知識。但是,在通過相關博客或者源碼學習時,如果不能和實際的代碼進行結合,在理解上或許不夠深刻。本文介紹一種方式,即使用 GODEBUG 工具,通過實際運行代碼來直觀地查看 Go 運行時的調度過程。調度簡述---- ⌘ Read more