# 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/cvfzcaq
萬字長文帶你深入 Redis 底層數據結構**
Redis 數據庫的數據結構--------------Redis 的鍵值對中的 key 就是字符串對象,而 value 就是指 Redis 的數據類型,可以是 String,也可以是 List、Hash、Set、 Zset 的數據類型。其實是 Redis 底層使用了一個全局哈希表保存所有鍵值對,哈希表的最大好處就是 O(1) 的時間複雜度快速查找到鍵值對。哈希表其實就是一個數組,數組中的元素叫做 ⌘ Read more