![JAR search and dependency download from the Maven repository](/logo.png)
org.infinispan.server.resp.hll.internal.Util Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of infinispan-server-resp Show documentation
Show all versions of infinispan-server-resp Show documentation
Infinispan Resp Protocol Server
package org.infinispan.server.resp.hll.internal;
import org.infinispan.commons.hash.MurmurHash3;
public class Util {
private Util() { }
public static long hash(byte[] data) {
// The same seed from Redis' implementation.
return MurmurHash3.MurmurHash3_x64_64(data, 0xadc83b19);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy