# 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/kgsv7qa
Golang 負載均衡算法**
【導讀】本文介紹了幾種 go 負載均衡算法。引子--負載均衡被廣泛運用在各種編排系統,微服務網關,Nginx/HAProxy 作爲前置的網站集羣等等場所。在看不到的更多領域,甚至於你所想象不到的,從未注意過的一些場所,負載均衡也以不同的面目在出沒着,例如機械硬盤、硬盤組的讀寫訪問,多核 CPU 的管線分配等等等等。所以說負載均衡這種技術,以優化資源運用,最大化吞吐率,最小訪問時延,防止過載爲目標, ⌘ Read more