# 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/frjwtra
Go 併發並不一定是最快的**
併發並不一定是最快的許多開發人員犯的一個誤解是認爲併發的處理方法應該總是比順序的處理方法更快,這是大錯特錯的。處理方法的整體性能取決於很多因素。例如程序結構的效率(併發性),可以並行處理的部分以及計算單元之間的競爭程度。在本節中,我們將學習一些 Go 併發的基礎知識,並通過一個具體的例子說明併發的處理方法並不是最快的。Go 調度線程是操作系統可以執行的最小處理單元。如果一個進程想要同時執行多個動作 ⌘ Read more