*
* @param nodes The List of nodes to use in the Ketama consistent hash continuum
* @param alg The hash algorithm to use when choosing a node in the Ketama consistent hash continuum
*/
public KetamaNodeLocator(List<MemcachedNode> nodes, HashAlgorithm alg) {
this(nodes, alg, new DefaultKetamaNodeLocatorConfiguration());
}