Main Page | Data Structures | Directories | File List | Data Fields | Globals

Silver Spoon - Some hacks based on Bloom filters

Introduction

Silver spoon is some C code for that plays around with Bloom filters. Make of it what you will.

Bloom filters are a scheme for approximate testing if a item is a member of set. They are useful when the set is huge, for example they were first invented to test if spelling words are in the dictionary. Bloom filters can generate false positives.

inline_dotgraph_1

Bloom counters are a varient of bloom filters that estimate how many times a given item occurs in a stream of items. Like the false positives of a bloom filter a bloom counter can over count some times.

inline_dotgraph_2

Bloom filters are used for approximate membership testing, while bloom counters provide approximate accounting.

Homepage

Silver spoon lives here: http://www.cozy.org/silverspoon/

Install

See the README file found after you unpack the distribution.

Developing

See the README.dev file.

License

See the LICENSE file. Note that I'm currently hording the copyright; this will likely change.

References

See also:
Generated on Thu Jul 28 22:20:52 2005 for HTP - a library for realtime detection of hotspots by  doxygen 1.4.4