BITOP

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

BIT operation

使い方は bitop operation destkey key1 key2 です。
operationは AND, OR, XOR, NOT があります。
src_keyは複数使用することができます。

Example

コマンド>set key1 A
結果>OK
コマンド>set key2 B
結果>OK
コマンド>bitop AND destkey key1 key2
結果>1
コマンド>get destkey
結果>@
コマンド>bitop OR destkey key1 key2
結果>1
コマンド>get destkey
結果>C
コマンド>bitop XOR destkey key1 key2
結果>1
コマンド>get destkey
結果>\x03   redis-cli 表記
コマンド>bitop NOT destkey key1 key2
結果>1
コマンド>get destkey
結果>\xbe   redis-cli 表記

アニメーション表示



コマンド

BITOP operation destkey key [key ...]

  • このコマンドは、version 2.6.0 から使用することができます。
  • 論理的処理の所要時間はO(N)です。
関連コマンド SETBIT, GETBIT, BITCOUNT, BITPOS
Clients for Java Jedis, Lettuce, Redisson
Clients for C Hiredis

<< GETBIT BITOP BITCOUNT >>

クリック件数 :

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