# 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/4ehbxrq
Go 併發和協程池**
在現代編程語言中,併發已經成爲一種非常明確的需求。如今幾乎每種編程語言都有一些併發的方法。有些語言具有豐富的結構體,可以將負載分配到操作系統的多線程上執行,例如 Java,類似的還有 Ruby。Golang 具有非常強大的併發模型,稱爲 CSP(communicating sequential processes),它將一個問題分解成更小的順序進程,然後調度這些進程的幾個實例,稱爲 Gorou ⌘ Read more