Redis ハッシュ値のフィールド値のみを全て取得するサンプル

環境
redis 7.0.5
CentOS Stream release 9

構文
hkeys キー名
keyに設定されているハッシュ値のフィールド値のみを全て取得するには、
「hkeys」を使用します。

操作例
127.0.0.1:6379> hexists key1 hash1
(integer) 1

127.0.0.1:6379> hexists key1 hash2
(integer) 1

127.0.0.1:6379> hexists key1 hash3
(integer) 0

操作例2
127.0.0.1:6379> hvals key1
1) “sss"
2) “ttt"

IT

Posted by arkgame