BitOpNot creates a new bitmap in which users are not members of a given bitmap
(ctx context.Context, destKey string, key string)
| 99 | |
| 100 | // BitOpNot creates a new bitmap in which users are not members of a given bitmap |
| 101 | func (c cmdable) BitOpNot(ctx context.Context, destKey string, key string) *IntCmd { |
| 102 | return c.bitOp(ctx, "not", destKey, key) |
| 103 | } |
| 104 | |
| 105 | // BitOpDiff creates a new bitmap in which users are members of bitmap X but not of any of bitmaps Y1, Y2, … |
| 106 | // Introduced with Redis 8.2 |