Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
redis-cli で、リストのサイズを事前に知らなくても、リスト内のすべての値を出力するコマンドは何ですか? わかりlrangeましたが、開始インデックスと終了インデックスに名前を付ける必要があります。
lrange
-1 を使用して、リストの終わりを示します。
LRANGE key 0 -1
すべてを印刷します。