CFDel deletes an item once from the cuckoo filter. For more information - https://redis.io/commands/cf.del/
(ctx context.Context, key string, element interface{})
| 588 | // CFDel deletes an item once from the cuckoo filter. |
| 589 | // For more information - https://redis.io/commands/cf.del/ |
| 590 | func (c cmdable) CFDel(ctx context.Context, key string, element interface{}) *BoolCmd { |
| 591 | args := []interface{}{"CF.DEL", key, element} |
| 592 | cmd := NewBoolCmd(ctx, args...) |
| 593 | _ = c(ctx, cmd) |
| 594 | return cmd |
| 595 | } |
| 596 | |
| 597 | // CFExists determines whether an item may exist in the Cuckoo Filter or not. |
| 598 | // For more information - https://redis.io/commands/cf.exists/ |
nothing calls this directly
no test coverage detected