# 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/l2e7lkq
Go 協程與併發機制(三)golang 中的協程**
【背景】 在 golang 中,協程被認爲是輕量級的線程。 和線程不同的是,操作系統內核感知不到協程的存在,用戶態的協程依賴 golang 運行時自身提供的調度器進行管理。同時,golang 中的協程是從屬於某個線程的,協程和線程的對應關係爲 M:N,即多對多,golang 語言調度器可以將多個協程調度到一個線程中,一個協程也可能切換到多個線程執行。 那麼,爲什麼 ⌘ Read more