up vote 1 down vote favorite
share [g+] share [fb]

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.

link|improve this question

Where can we see more about the FLV-1 hash alg? – jsight Aug 19 '09 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 '09 at 21:11
last.fm/user/RJ/journal/2007/04/10/… My bad. The source was a comment in this web page. Seems to have been a typo. – justinhj Aug 19 '09 at 22:05
feedback

2 Answers

up vote 2 down vote accepted

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

link|improve this answer
Yeah, that looks legit, thanks. – justinhj Aug 19 '09 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 '09 at 22:19
feedback

This is a good resource on evaluating how good a hash function is using statistics - http://home.comcast.net/~bretm/hash/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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