Skip to content
This repository has been archived by the owner on Mar 1, 2023. It is now read-only.

Fix broken url to "Better Bloom Filter" paper #47

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/java/org/apache/cassandra/utils/BloomFilter.java
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ protected long[] initialValue()

// Murmur is faster than an SHA-based approach and provides as-good collision
// resistance. The combinatorial generation approach described in
// http://www.eecs.harvard.edu/~kirsch/pubs/bbbf/esa06.pdf
// https://www.eecs.harvard.edu/~michaelm/postscripts/tr-02-05.pdf
// does prove to work in actual tests, and is obviously faster
// than performing further iterations of murmur.
protected abstract void hash(ByteBuffer b, int position, int remaining, long seed, long[] result);
Expand Down