Redis 設定されているスコアを確認する

Redis 設定されているスコアを確認する

Redisで、設定されているスコアを確認する手順を記述してます。「zscore」にキー名とメンバーを指定することで可能です。

環境

  • OS CentOS Stream release 9
  • Redis 7.0.5

手順

設定されているスコアを確認するには、「zscore」を使用します。

zscore キー名 メンバー

実際に、設定して確認してみます。

127.0.0.1:6379> zadd zs1 1 a 2 b 3 c
(integer) 1

確認します。

127.0.0.1:6379> zscore zs1 a
"1"

127.0.0.1:6379> zscore zs1 b
"2"

127.0.0.1:6379> zscore zs1 c
"3"

メンバーに設定されているスコアが確認できます。

存在しない値を指定

存在しないキーやメンバーを指定すると「nil」が返ります。

127.0.0.1:6379> zscore zs1 aaa
(nil)

127.0.0.1:6379> zscore zs10 a
(nil)