Package net.spy.memcached.util

Examples of net.spy.memcached.util.DefaultKetamaNodeLocatorConfiguration


  final HashAlgorithm hashAlg;
    final KetamaNodeLocatorConfiguration config;


  public KetamaNodeLocator(List<MemcachedNode> nodes, HashAlgorithm alg) {
        this(nodes, alg, new DefaultKetamaNodeLocatorConfiguration());
  }
View Full Code Here


   *          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());
  }
View Full Code Here

   *
   * @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());
  }
View Full Code Here

TOP

Related Classes of net.spy.memcached.util.DefaultKetamaNodeLocatorConfiguration

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.