MCPcopy
hub / github.com/redis/go-redis / CFDel

Method CFDel

probabilistic.go:590–595  ·  view source on GitHub ↗

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{})

Source from the content-addressed store, hash-verified

588// CFDel deletes an item once from the cuckoo filter.
589// For more information - https://redis.io/commands/cf.del/
590func (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/

Callers

nothing calls this directly

Calls 1

NewBoolCmdFunction · 0.85

Tested by

no test coverage detected