Redis6 lindexでリストからインデックス番号を指定して値を取得する

環境
Rocky Linux release 9.0 (Blue Onyx)
Redis  6.2.6

書式
lindex キー名 インデックス番号
「lindex」を使用して、リストからインデックス番号を指定して値を取得します。

使用例
1.リストを作成します
127.0.0.1:6379> rpush cityLst “tokyo"
(integer) 1
127.0.0.1:6379> rpush cityLst “oosaka"
(integer) 2
127.0.0.1:6379> rpush cityLst “fukuoka"
(integer) 3

2.インデックス番号を指定して値を取得します

127.0.0.1:6379> lindex cityLst 0
"tokyo"
127.0.0.1:6379> lindex cityLst 1
"oosaka"
127.0.0.1:6379> lindex cityLst 2
"fukuoka"

 

Redis

Posted by arkgame