All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.zulia.util.ShardUtil Maven / Gradle / Ivy

There is a newer version: 1.6.4
Show newest version
package io.zulia.util;

public class ShardUtil {
	public static int findShardForUniqueId(String uniqueId, int numOfShards) {
		return Math.abs(uniqueId.hashCode()) % numOfShards;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy