Redisは、ビット演算としてのみORを実行します。
例:
redis> SET key1 "foobar"
OK
redis> SET key2 "abcdef"
OK
redis> BITOP AND dest key1 key2
(integer) 6
redis> GET dest
"`bc`ab"
これについて詳しくは、http://redis.io/commands/bitop
をご覧ください。Redisは、ビット演算としてのみORを実行します。
例:
redis> SET key1 "foobar"
OK
redis> SET key2 "abcdef"
OK
redis> BITOP AND dest key1 key2
(integer) 6
redis> GET dest
"`bc`ab"
これについて詳しくは、http://redis.io/commands/bitop
をご覧ください。