vote up 1 vote down star

I've seen the Fowler-Noll-Vo (FNV) recommended as a good choice for a fast hashing algorithm for use in our implementation of a consistent hashing system.

Can't seem to locate a good Java source for it though.

flag

Where can we see more about the FLV-1 hash alg? – jsight Aug 19 at 21:10
I can't find any hash algorithms named FLV with google. Are you sure you don't mean FNV? – Rob Aug 19 at 21:11
last.fm/user/RJ/… My bad. The source was a comment in this web page. Seems to have been a typo. – justinhj Aug 19 at 22:05

1 Answer

vote up 1 vote down check

If FLV was a typo and you really meant FNV, then you can find java sources at getopt.org.

link|flag
Yeah, that looks legit, thanks. – justinhj Aug 19 at 22:07
1  
I would add that you should consider this comment: "This is a very fast hash, with excellent avalanche behavior. Compared with the FNV1a32 (see below) it's roughly 10 times faster, and roughly 5 times faster that a Java version of Jenkins' hash ( available here). This implementation is a Java port of a C version of MurmurHash 2.0 ." – ShuggyCoUk Aug 19 at 22:19

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.