Hi,It seems that CityHash was removed from Guava. I am curious as to why it was removed. Is there a chance it will be added back?Thanks.
--
--
guava-...@googlegroups.com
Project site: http://guava-libraries.googlecode.com
This group: http://groups.google.com/group/guava-discuss
This list is for general discussion.
To report an issue: http://code.google.com/p/guava-libraries/issues/entry
To get help: http://stackoverflow.com/questions/ask?tags=guava
---
You received this message because you are subscribed to the Google Groups "guava-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to guava-discus...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/guava-discuss/3ac8c15a-3cb7-4e98-8d87-ef6310de5187%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Thanks for pointing this out. I was thinking about using 128-bit CityHash to generate id (hash) for billions of documents to stored in db. The intent is content deduplication with very low accidental collision. SipHash implementation in Guava produces 64-bit output. So, it has a relatively high probability of collision for my corpus size. Is there a 128-bit implementation of SipHash? Otherwise, 128-bit murmur3 seems to be a better choice for now.