Download Orestes Bloomfilter Free Java Code

Description

Library of different Bloom filters in Java with optional Redis backing, counting and many hashing options.

Icons

Orestes Bloomfilter

Source Files

The download file Orestes-Bloomfilter-master.zip has the following entries.


.classpath// w  w  w . j a  v  a  2 s .c o  m
.gitignore
.project
LICENSE
README.md
build.xml
build/classes/orestes/bloomfilter/BloomFilter$1.class
build/classes/orestes/bloomfilter/BloomFilter$CustomHashFunction.class
build/classes/orestes/bloomfilter/BloomFilter$HashMethod.class
build/classes/orestes/bloomfilter/BloomFilter.class
build/classes/orestes/bloomfilter/CBloomFilter$1.class
build/classes/orestes/bloomfilter/CBloomFilter$OverflowHandler.class
build/classes/orestes/bloomfilter/CBloomFilter.class
build/classes/orestes/bloomfilter/SynchronizedBloomFilter.class
build/classes/orestes/bloomfilter/SynchronizedCBloomFilter.class
build/classes/orestes/bloomfilter/json/BloomFilterConverter.class
build/classes/orestes/bloomfilter/redis/BloomFilterRedis.class
build/classes/orestes/bloomfilter/redis/CBloomFilterRedis.class
build/classes/orestes/bloomfilter/redis/CBloomFilterRedisBits.class
build/classes/orestes/bloomfilter/redis/RedisBitSet.class
build/lib/gson-1.6.jar
build/lib/jedis-2.1.0.jar
build/lib/jetty-util-9.0.0.RC2.jar
build/orestes-bf-with-deps.jar
build/orestes-bf.jar
doc/allclasses-frame.html
doc/allclasses-noframe.html
doc/constant-values.html
doc/deprecated-list.html
doc/help-doc.html
doc/index-files/index-1.html
doc/index-files/index-10.html
doc/index-files/index-11.html
doc/index-files/index-12.html
doc/index-files/index-13.html
doc/index-files/index-14.html
doc/index-files/index-15.html
doc/index-files/index-16.html
doc/index-files/index-17.html
doc/index-files/index-18.html
doc/index-files/index-2.html
doc/index-files/index-3.html
doc/index-files/index-4.html
doc/index-files/index-5.html
doc/index-files/index-6.html
doc/index-files/index-7.html
doc/index-files/index-8.html
doc/index-files/index-9.html
doc/index.html
doc/orestes/bloomfilter/BloomFilter.CustomHashFunction.html
doc/orestes/bloomfilter/BloomFilter.HashMethod.html
doc/orestes/bloomfilter/BloomFilter.html
doc/orestes/bloomfilter/BloomFilterBenchmark.html
doc/orestes/bloomfilter/BloomFilterMagnus.html
doc/orestes/bloomfilter/CBloomFilter.OverflowHandler.html
doc/orestes/bloomfilter/CBloomFilter.html
doc/orestes/bloomfilter/class-use/BloomFilter.CustomHashFunction.html
doc/orestes/bloomfilter/class-use/BloomFilter.HashMethod.html
doc/orestes/bloomfilter/class-use/BloomFilter.html
doc/orestes/bloomfilter/class-use/BloomFilterBenchmark.html
doc/orestes/bloomfilter/class-use/BloomFilterMagnus.html
doc/orestes/bloomfilter/class-use/CBloomFilter.OverflowHandler.html
doc/orestes/bloomfilter/class-use/CBloomFilter.html
doc/orestes/bloomfilter/json/BloomFilterConverter.html
doc/orestes/bloomfilter/json/class-use/BloomFilterConverter.html
doc/orestes/bloomfilter/json/package-frame.html
doc/orestes/bloomfilter/json/package-summary.html
doc/orestes/bloomfilter/json/package-tree.html
doc/orestes/bloomfilter/json/package-use.html
doc/orestes/bloomfilter/package-frame.html
doc/orestes/bloomfilter/package-summary.html
doc/orestes/bloomfilter/package-tree.html
doc/orestes/bloomfilter/package-use.html
doc/orestes/bloomfilter/redis/BloomFilterRedis.html
doc/orestes/bloomfilter/redis/CBloomFilterRedis.html
doc/orestes/bloomfilter/redis/CBloomFilterRedisBits.html
doc/orestes/bloomfilter/redis/RedisBitSet.html
doc/orestes/bloomfilter/redis/class-use/BloomFilterRedis.html
doc/orestes/bloomfilter/redis/class-use/CBloomFilterRedis.html
doc/orestes/bloomfilter/redis/class-use/CBloomFilterRedisBits.html
doc/orestes/bloomfilter/redis/class-use/RedisBitSet.html
doc/orestes/bloomfilter/redis/package-frame.html
doc/orestes/bloomfilter/redis/package-summary.html
doc/orestes/bloomfilter/redis/package-tree.html
doc/orestes/bloomfilter/redis/package-use.html
doc/overview-frame.html
doc/overview-summary.html
doc/overview-tree.html
doc/package-list
doc/resources/background.gif
doc/resources/tab.gif
doc/resources/titlebar.gif
doc/resources/titlebar_end.gif
doc/serialized-form.html
doc/stylesheet.css
doc/test/BFHashFP.html
doc/test/BFHashSpeed.html
doc/test/BFHashUniformity.html
doc/test/BFTests.html
doc/test/RedisBFPerformance.html
doc/test/RedisBFTests.html
doc/test/RedisTests.html
doc/test/Tutorial.html
doc/test/class-use/BFHashFP.html
doc/test/class-use/BFHashSpeed.html
doc/test/class-use/BFHashUniformity.html
doc/test/class-use/BFTests.html
doc/test/class-use/RedisBFPerformance.html
doc/test/class-use/RedisBFTests.html
doc/test/class-use/RedisTests.html
doc/test/class-use/Tutorial.html
doc/test/package-frame.html
doc/test/package-summary.html
doc/test/package-tree.html
doc/test/package-use.html
js/index.html
js/lib/jquery.js
lib/commons-math-2.2.jar
lib/gson-2.2.4-sources.jar
lib/gson-2.2.4.jar
lib/jedis-2.1.0.jar
lib/jetty-util-9.0.0.RC2.jar
overview.html
src/orestes/bloomfilter/BloomFilter.java
src/orestes/bloomfilter/BloomFilters.java
src/orestes/bloomfilter/CBloomFilter.java
src/orestes/bloomfilter/json/BloomFilterConverter.java
src/orestes/bloomfilter/redis/BloomFilterRedis.java
src/orestes/bloomfilter/redis/CBloomFilterRedis.java
src/orestes/bloomfilter/redis/CBloomFilterRedisBits.java
src/orestes/bloomfilter/redis/RedisBitSet.java
src/orestes/bloomfilter/redis/lua-scripts
test/orestes/bloomfilter/test/AllBFTests.java
test/orestes/bloomfilter/test/BFHashFP.java
test/orestes/bloomfilter/test/BFHashSpeed.java
test/orestes/bloomfilter/test/BFHashUniformity.java
test/orestes/bloomfilter/test/BFTests.java
test/orestes/bloomfilter/test/BloomFilterBenchmark.java
test/orestes/bloomfilter/test/BloomFilterMagnus.java
test/orestes/bloomfilter/test/RedisBFPerformance.java
test/orestes/bloomfilter/test/RedisBFTests.java
test/orestes/bloomfilter/test/RedisTests.java
test/orestes/bloomfilter/test/Tutorial.java

Download

Click the following link to download Orestes-Bloomfilter-master.zip.

Orestes-Bloomfilter-master.zip




















Home »
  Java Free Code »
    Database »




Cassandra
CouchDB
Database
Hadoop
HBase
Hibernate
JDBC
JPA
LINQ
MapReduce
Memcached
MongoDB
MyBatis
MySQL
neo4j
Oracle
ORM
Redis
SQL