# 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/rtk4jyq
批量執行 Redis 命令的 4 種方式!**
前言在我們的印象中 Redis 命令好像都是一個個單條進行執行的,如果有人問你如何批量執行 Redis 命令,你能回答的上嗎,或者說能答出幾種方式呢?最容易想到的是 Redis 的一些批量命令,例如 MGET今天小許就這個問題給大家總結一下!Redis 命令執行過程在瞭解批量執行有哪些方式之前,我們簡單回顧下 Redis 命令執行的過程:爲什麼需要批量執行命令呢?在瞭解批量執行命令有哪些方式之前, ⌘ Read more