1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
Source: python-bloomfilter
Section: python
Priority: optional
Maintainer: Ulises Vitulli <dererk@debian.org>
Build-Depends: debhelper (>= 7.0.50~), python-all-dev, python (>= 2.5.4-1~), python-support (>= 0.6.4), python-setuptools
Standards-Version: 3.9.2.0
XS-Python-Version: >= 2.5
Homepage: https://github.com/jaybaird/python-bloomfilter
Package: python-bloomfilter
Architecture: all
Depends: ${python:Depends}, ${misc:Depends}, python-bitarray
Description: Python native implementation of the Bloom filter probabilistic data structure
This module includes both the Bloom filter probabilistic data structure,
together with a Scalable Bloom filter that allows a bloom filter to grow
without knowing the original set size.
.
Bloom filters are great if you understand what amount of bits you need to set
aside early to store your entire set. Scalable Bloom Filters allow your bloom
filter bits to grow as a function of false positive probability and size.
|