List of usage examples for org.apache.lucene.util StringHelper GOOD_FAST_HASH_SEED
int GOOD_FAST_HASH_SEED
To view the source code for org.apache.lucene.util StringHelper GOOD_FAST_HASH_SEED.
Click Source Link
From source file:org.elasticsearch.xpack.security.authc.BytesKey.java
License:Open Source License
public BytesKey(byte[] bytes) { this.bytes = bytes; this.hashCode = StringHelper.murmurhash3_x86_32(bytes, 0, bytes.length, StringHelper.GOOD_FAST_HASH_SEED); }