Download the PHP package maxwilms/bloom-filter without Composer
On this page you can find all versions of the php package maxwilms/bloom-filter. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download maxwilms/bloom-filter
More information about maxwilms/bloom-filter
Files in maxwilms/bloom-filter
Download maxwilms/bloom-filter
More information about maxwilms/bloom-filter
Files in maxwilms/bloom-filter
Vendor maxwilms
Package bloom-filter
Short Description Bloom filter - a space-efficient probabilistic data structure for PHP 5.4+
License MIT
Package bloom-filter
Short Description Bloom filter - a space-efficient probabilistic data structure for PHP 5.4+
License MIT
Please rate this library. Is it a good library?
Informations about the package bloom-filter
PHP Bloom filter
A Bloom filter is a probabilistic data structure, that tests whether an element is member of a set. It will always confirm if the element is member of the set. But false-positives are possible.
When to use Bloom filters
Use this data structure when you quickly need to confirm that a certain value does not exists in a large data set. For example a certain row is not present on your database (e.g., IP address, username, email).
Installation
First install composer.
Require the bloom filter via composer:
composer require maxwilms/bloom-filter
Now you are ready to use it!
Usage
TODO
more examples :)
All versions of bloom-filter with dependencies
PHP Build Version
Package Version
Requires
php Version
>=5.4
The package maxwilms/bloom-filter contains the following files
Loading the files please wait ....