# 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/udlvjka
再談 Redis 三種集羣模式:主從模式、哨兵模式和 Cluster 模式**
總結經驗 redis 主從:可實現高併發 (讀),典型部署方案:一主二從 redis 哨兵:可實現高可用,典型部署方案:一主二從三哨兵 redis 集羣:可同時支持高併發 (讀與寫)、高可用,典型部署方案:三主三從一、概述Redis 支持三種不同的集羣模式:主從模式、哨兵模式和 Cluster 模式,各具特色,應對不同的應用場景。初始階段,Redis 採用主從模式進行集羣構建。在此模式中,主 ⌘ Read more