# 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/h2wgnpa
揭祕系列: Goroutine 調度器**
現在不要擔心理解上面的圖片,因爲我們將從非常基礎的知識開始。Goroutines 分佈在線程中,由 Goroutine 調度器在幕後處理。根據我們之前的討論,我們知道一些關於 Goroutines 的事情:• 從原始執行速度來看,Goroutines 不一定比線程更快,因爲它們需要一個實際的線程來運行。•Goroutines 的真正優勢在於上下文切換、內存佔用、創建和拆除的成本等方面。你可能之前聽 ⌘ Read more