ZREMRANGEBYSCORE

Redis 開発者教育
Redis Developer Course
Redis 定期点検/技術支援
Redis Technical Support
Redis エンタープライズサーバ
Redis Enterprise Server

scoreに範囲を指定してmemberの削除

使い方は zremrangebyscore key min max です。
min、maxはscoreの範囲です。 全部削除するには -inf, +infを使用します。 +infの +は省略してもいいです。
min、maxをそのまま使用すると指定した値を含めて削除します。
min、maxの値を除外するためには、前に'('を使用します。

Example

コマンド>zadd city 50 "Tokyo" 60 "Seoul" 70 "Beijing" 80 "New York"
結果>4
コマンド>zrangebyscore city -inf inf withscores
結果> 0) 50 -> Tokyo
1) 60 -> Seoul
2) 70 -> Beijing
3) 80 -> New York
コマンド>zremrangebyscore city -inf (70
結果>2
コマンド>zrangebyscore city -inf inf withscores
結果> 0) 70 -> Beijing
1) 80 -> New York
コマンド>zremrangebyscore city -inf 70
結果>1
コマンド>zrangebyscore city -inf inf withscores
結果> 0) 80 -> New York

アニメーション表示



コマンド

ZREMRANGEBYSCORE key min max

  • このコマンドは、version 1.2.0 から使用することができます。
  • 論理的処理の所要時間はO(M*log(N))です。 Nは集合に属するmemberの個数で、Mは削除されるmemberの個数です。
関連コマンド ZREMRANGEBYSCORE, ZREMRANGEBYLEX, ZREMRANGEBYRANK, SREM, HDEL
Clients for Java Jedis, Lettuce, Redisson
Clients for C Hiredis

<< ZREMRANGEBYRANK ZREMRANGEBYSCORE ZREMRANGEBYLEX >>

クリック件数 :

Email 返事がかかってなれば、メールでお知らせします。