# 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/ezvxdoq
一致性哈希算法原理解析**
0 前言本期和大家一起分享一個設計思路非常巧妙的負載均衡策略——一致性哈希算法.本系列分爲理論篇和實戰篇兩部分:• 本篇是理論篇,和大家一起探討一致性哈希算法的技術原理 • 下週推出實戰篇,屆時我會基於 Golang 手寫實現出一個分佈式版本的一致性哈希 lib 庫,並會把相應的內容開源掛載在 github 上. 本期理論篇的分享大綱如下:1 問題背景在正式開講一致性哈希算法之前,我們 ⌘ Read more