# 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/bdob53a
Golang 中的異步任務隊列**
【導讀】本文介紹了 Go 移步任務隊列的實現。在一些常見的場景中,如果遇到了某些請求特別耗時間,爲了不影響其它用戶的請求以及節約服務器資源,我們通常會考慮使用異步任務隊列去解決,這樣可以快速地處理請求、只返回給用戶任務創建結果,等待任務完成之後,我們再告知用戶任務的完成情況。對於 Golang,我們可以通過 Worker pool 異步處理任務,在大多數情況下,如果不在意數據丟失以及服務器性能足夠 ⌘ Read more