# 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/6wyc55a
負載均衡策略與算法詳解**
負載均衡策略------在分佈式架構中,負載均衡策略是非常重要的內容。它不僅能在一定程度上保證整個集羣的高可用,而且能夠提高系統的吞吐量,降低服務響應時間。每臺計算機的系統資源都是有限的,能夠承載的任務及處理的請求也是有限的。在分佈式系統中一般通過擴容來增加系統整體的承載能力,但是當大量併發的請求發生時,如果請求分配不均勻,就會導致部分機器收到了大量請求,而部分機器非常空閒,這種現象輕則導致吞吐率 ⌘ Read more