Skip to content

Commit dfbc419

Browse files
committed
Use fixed hash function in benchmark
1 parent fad6e44 commit dfbc419

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/com/rabbitmq/stream/benchmark/HashAlgorithmBenchmark.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public class HashAlgorithmBenchmark {
5959
put(
6060
"murmur3-guava",
6161
d -> {
62-
HashFunction hashFunction = Hashing.murmur3_32();
62+
HashFunction hashFunction = Hashing.murmur3_32_fixed();
6363
return hashFunction.hashString(d, StandardCharsets.UTF_8).asInt();
6464
});
6565
put(

0 commit comments

Comments
 (0)