$_numberOfReplicas
$_numberOfReplicas : integer
Number of times to put each node into the hash circle per weight value.
For a thorough description of consistent hashing, see http://www.spiteful.com/2008/03/17/programmers-toolbox-part-3-consistent-hashing/, and also the original paper: http://www8.org/w8-papers/2a-webserver/caching/paper2.html
Copyright 2007-2017 Horde LLC (http://www.horde.org/)
__construct(array $nodes = array(), integer $weight = 1, integer $numberOfReplicas = 100)
Create a new consistent hash, with initial $nodes at $numberOfReplicas
array | $nodes | Initial array of nodes to add at $weight. |
integer | $weight | The weight for the initial node list. |
integer | $numberOfReplicas | The number of points on the circle to generate for each node. |