What are Bloom Filters?(medium.com) |
What are Bloom Filters?(medium.com) |
(ql:quickload "cl-bloom")
(in-package :cl-bloom)
(setf *mydiet* (make-filter :CAPACITY 256 :false-drop-rate *FALSE-DROP-RATE*)
;; default false-drop-rate = 1/1000
;; returns #<BLOOM-FILTER #x000325FC7B028>
(add *mydiet* "hamburguer") ;; add lots of items, returns NIL
(add *mydiet* "salad")
;; ask if an element is yet in the collection
(memberp *mydiet* "hamburguer") ;; T (I can be wrong)
(memberp *mydiet* "orange");; NIL (definitely not)