Skip to content

Latest commit

 

History

History
7 lines (7 loc) · 380 Bytes

README.md

File metadata and controls

7 lines (7 loc) · 380 Bytes

Bloomfilter-store

Small scala library for bloom filters with Redis as backend. Bloom filters can be unlimitied huge. This library offers two simple methods

  • def put(element: T): Future[Unit] -- put element in bloom filter
  • def mightContain(element: T): Future[Boolean] - check if element is in bloom filter(with predefined probability) Actual bloom filter is stored in Redis.