Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|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

2 Answers

up vote 2 down vote accepted

If by FLV you really meant FNV, then you can find Java sources at getopt.org.

share|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

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

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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