# 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/onkvmqq
Redis 的 RESP 協議真的這麼簡單?抓包分析**
聽說 Redis 協議很簡單,那今天就抓個包來一起看看吧。RESP  是什麼 Redis 的序列化協議, 是一種二進制協議,支持多種數據類型,其中,數據的第一個字節(First byte)決定其類型,使用 ( CRLF \\\\r\\\\n) 作爲協議的終止符。 特點:易於實現,快速解析,可直接閱讀 目前有 RESP2 和 RESP3(Redis6 開始) 兩個版本。支持這麼多種類型 👇\\| RE ⌘ Read more