CFExists determines whether an item may exist in the Cuckoo Filter or not. For more information - https://redis.io/commands/cf.exists/
(ctx context.Context, key string, element interface{})
| 597 | // CFExists determines whether an item may exist in the Cuckoo Filter or not. |
| 598 | // For more information - https://redis.io/commands/cf.exists/ |
| 599 | func (c cmdable) CFExists(ctx context.Context, key string, element interface{}) *BoolCmd { |
| 600 | args := []interface{}{"CF.EXISTS", key, element} |
| 601 | cmd := NewBoolCmd(ctx, args...) |
| 602 | _ = c(ctx, cmd) |
| 603 | return cmd |
| 604 | } |
| 605 | |
| 606 | // CFLoadChunk restores a filter previously saved using SCANDUMP. |
| 607 | // For more information - https://redis.io/commands/cf.loadchunk/ |
nothing calls this directly
no test coverage detected