# 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/5tktluq
Redis 爲什麼要採用 RDB 和 AOF 兩種持久化方式?**
這篇文章,我們來分享 Redis 是如何實現持久化以及 Redis 爲什麼要採用 RDB 和 AOF 兩種持久化方式。什麼是持久化?持久化,Persistence,把數據(如內存中的對象)保存到可永久保存的存儲設備中(如磁盤)。這樣可以保證程序在服務器宕機後,重新啓動不會丟失數據。持久化方式Redis 的持久化方式有兩種:RDB 和 AOF。2.1 RDB-------RDB:Redis Data ⌘ Read more