News Feed
Jobs Feed
Sections




News Archive
Andrei Zmievski's Blog:
Bloom Filters Quickie
April 07, 2009 @ 11:13:01

Andrei Zmievski has written a new post about a new extension he's worked up (out of curiosity for the technology) - the pecl/bloomy extension.

A Bloom filter is a probabilistic data structure that can be used to answer a simple question, is the given element a member of a set? Now, this question can be answered via other means, such as hash table or binary search trees. But the thing about Bloom filters is that they are incredibly space-efficient when the number of potential elements in the set is large.

The filters allow false positives with a defined error rate - it gives the "yes" or "no" answer based on the content and you, the developer, decide if that answer falls within a rate that's okay for you and your app. The filters also take the same amount of time to look up items no matter how many are in the set.

He includes an example of the extension in use - defining the number of elements, the false positive allowance and adding/searching data and how the responses would come back from the checks.

0 comments voice your opinion now!
bloom filter pecl extension example false positive rate data structure


blog comments powered by Disqus

Similar Posts

Tobias Schlitt's Blog: Sending HEAD requests with ext/curl

GNUCitizen.org: Reviewing Practical PHP Exploitation Techniques

Community News: Latest PECL Releases for 10.09.2007

Kevin Schroeder's Blog: My first stab at the Dependency Injection Container in Zend Framework 2

Ulrich Kautz: PHP Validation & Sanitization


Community Events









Don't see your event here?
Let us know!


zendframework2 database introduction release object development framework testing language phpunit event interview opinion unittest community api functional code composer example

All content copyright, 2013 PHPDeveloper.org :: info@phpdeveloper.org - Powered by the Solar PHP Framework