murmur icon indicating copy to clipboard operation
murmur copied to clipboard

Pure Java implementations of Murmur hash algorithms

Results 4 murmur issues
Sort by recently updated
recently updated
newest added

Could you provide any way to calculate a murmur hash code from a long file. Using traditional `MessageDigest` in java, we are reading the file incrementally: ``` while ((bytesCount =...

Running in jshell ``` import com.sangupta.murmur.Murmur3; byte[] data2 = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1}; Murmur3.hash_x64_128(data2, data2.length, 0); Murmur3.hash_x64_128(data2,...

The performances test as they are currently written are biased due to the JVM optimizations. [JMH](http://openjdk.java.net/projects/code-tools/jmh/), would help to to write unbiased benchmarks.

enhancement

Bumps [guava](https://github.com/google/guava) from 29.0-jre to 32.0.0-jre. Release notes Sourced from guava's releases. 32.0.0 Maven <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>32.0.0-jre</version> <!-- or, for Android: --> <version>32.0.0-android</version> </dependency> Jar files 32.0.0-jre.jar 32.0.0-android.jar Guava...

dependencies