zrangebyscore
ZRANGEBYSCORE
Redis 開発者教育 Redis Developer Course |
Redis 定期点検/技術支援 Redis Technical Support |
Redis エンタープライズサーバ Redis Enterprise Server |
---|
scoreに範囲を指定して照会
使い方は zrangebyscore key min max です。
min、maxはscoreの範囲で、 min、maxを含めて照会します。
すべて照会するためには、-inf, +infを使用します。
scoreを一緒に見るためには、withscoresオプションを使用します。
Example
コマンド> | zadd mycom 2009 "Sun microsystems" 1992 Wang 2002 Netscape |
結果> | 3 |
コマンド> | zadd mycom 1998 "Digital Equipment" 2002 K-mart 1987 "American motors" |
結果> | 3 |
コマンド> | zrangebyscore mycom -inf +inf withscores |
結果> |
0) 1987 -> American motors 1) 1992 -> Wang 2) 1998 -> Digital Equipment 3) 2002 -> K-mart scoreが同じ場合memberに比較します。 4) 2002 -> Netscape 5) 2009 -> Sun microsystems |
コマンド> | zrangebyscore mycom 1998 2002 withscores |
結果> |
0) 1998 -> Digital Equipment 1) 2002 -> K-mart 2) 2002 -> Netscape |
コマンド> | zrangebyscore mycom 2005 +inf withscores |
結果> | 0) 2009 -> Sun microsystems |
含めないようにするにはmin、maxに使用
使い方は zrangebyscore key (min (max です。
Example
コマンド> | zrangebyscore mycom (1987 (2002 withscores 1987 < score < 2002 |
結果> |
0) 1992 -> Wang 1) 1998 -> Digital Equipment |
コマンド> | zrangebyscore mycom (1998 2002 withscores 1998 < score <= 2002 |
結果> |
0) 2002 -> K-mart 1) 2002 -> Netscape |
limit offset count使用
使い方は zrangebyscore key min max limit offset countです。
offsetはスタート地点を示して、countは照会するmemberの数です。
offsetは0から始めることができ、countが1以上です。0なら照会されません。
limitがあればoffset countいずれもいなければなりません。 省略できません。
page単位の照会に有用に使用することができます。
Example
コマンド> | zrangebyscore mycom -inf +inf withscores limit 0 3 |
結果> |
0) 1987 -> American motors 1) 1992 -> Wang 2) 1998 -> Digital Equipment |
コマンド> | zrangebyscore mycom -inf +inf withscores limit 3 100 |
結果> |
0) 2002 -> K-mart 1) 2002 -> Netscape 2) 2009 -> Sun microsystems |
コマンド
ZRANGEBYSCORE key min max [withscores] [limit offset count]
- このコマンドは、version 1.2.0 から使用することができます。
- Withscoresオプションはバージョン2.0.0です。
- 論理的処理の所要時間はO(log(N)+M)です。 Nは集合に属するmemberの個数で、 Mはリターンなるmemberの個数です。
関連コマンド | ZRANGE, ZREVRANGE, ZREVRANGEBYSCORE, LRANGE |
Clients for Java | Jedis, Lettuce, Redisson | Clients for C | Hiredis |
<< ZREVRANGE | ZRANGEBYSCORE | ZREVRANGEBYSCORE >> |
---|
クリック件数 :
Email
返事がかかってなれば、メールでお知らせします。