zrem
ZREM
Redis 開発者教育Redis Developer Course |
Redis 定期点検/技術支援Redis Technical Support |
Redis エンタープライズサーバRedis Enterprise Server |
|---|
member削除
使い方は zrem key member です。
memberを複数指定できます。
Example
| コマンド> | zadd mycom 2009 "Sun microsystems" 1992 Wang 2002 Netscape |
| 結果> | 3 |
| コマンド> | zadd mycom 1998 "Digital Equipment" 2005 K-mart 1987 "American motors" |
| 結果> | 3 |
| コマンド> | zrevrange mycom 0 -1 withscores |
| 結果> |
0) 1987 -> American motors 1) 1992 -> Wang 2) 1998 -> Digital Equipment 3) 2002 -> Netscape 4) 2005 -> K-mart 5) 2009 -> Sun microsystems |
| コマンド> | zrem mycom "American motors" "Wang" "Digital Equipment" |
| 結果> | 3 |
| コマンド> | zrevrange mycom 0 -1 withscores |
| 結果> |
0) 2002 -> Netscape 1) 2005 -> K-mart 2) 2009 -> Sun microsystems |
コマンド
ZREM key member [member]
- このコマンドは、version 1.2.0 から使用することができます。
- 論理的処理の所要時間はO(M*log(N))です。 Nは集合に属するmemberの個数であり、Mは削除されるmemberの個数です。
- version 2.4からmemberを複数指定できます。
| 関連コマンド | ZREMRANGEBYSCORE, ZREMRANGEBYLEX, ZREMRANGEBYRANK, SREM, HDEL |
| Clients for Java | Jedis, Lettuce, Redisson | Clients for C | Hiredis |
| << ZSCORE | ZREM | ZRM >> |
|---|
クリック件数 :
Email
返事がかかってなれば、メールでお知らせします。
