# 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/7hs36dq
Go 併發和協程池 -2-
Goroutines 和 channel 結構體使 golang 成爲強大的併發語言。在第一部分中,我們探討了如何構建一個協程池來優化 golang 的併發性能,即限制資源利用率。但那只是用一個簡單的例子來演示我們如何去做。在本文,我們將構建一個健壯的解決方案,以便我們可以在任何應用程序中使用這個解決方案。在網上也有一些解決方案,使用了調度程序和複雜的結構。事實上,不需要那麼複雜,我們可以使用一個 ⌘ Read more