MediaWiki REL1_31
|
Convenience class for weighted consistent hash rings. More...
Public Member Functions | |
__construct (array $map) | |
ejectFromLiveRing ( $location, $ttl) | |
Remove a location from the "live" hash ring. | |
getLiveLocation ( $item) | |
Get the location of an item on the "live" ring. | |
getLiveLocations ( $item, $limit) | |
Get the location of an item on the "live" ring, as well as the next locations. | |
getLiveLocationWeights () | |
Get the map of "live" locations to weight (ignores 0-weight items) | |
getLocation ( $item) | |
Get the location of an item on the ring. | |
getLocations ( $item, $limit) | |
Get the location of an item on the ring, as well as the next locations. | |
getLocationWeights () | |
Get the map of locations to weight (ignores 0-weight items) | |
Public Attributes | |
const | RING_SIZE = 268435456 |
Protected Member Functions | |
getLiveRing () | |
Get the "live" hash ring (which does not include ejected locations) | |
Protected Attributes | |
array | $ejectionExpiries = [] |
(location => UNIX timestamp) | |
int | $ejectionNextExpiry = INF |
UNIX timestamp. | |
HashRing null | $liveRing |
array | $ring = [] |
(location => (start, end)) | |
array | $sourceMap = [] |
(location => weight) | |
Convenience class for weighted consistent hash rings.
Definition at line 28 of file HashRing.php.
HashRing::__construct | ( | array | $map | ) |
array | $map | (location => weight) |
Definition at line 46 of file HashRing.php.
HashRing::ejectFromLiveRing | ( | $location, | |
$ttl ) |
Remove a location from the "live" hash ring.
string | $location | |
int | $ttl | Seconds |
Definition at line 146 of file HashRing.php.
Referenced by JobQueueFederated\tryJobInsertions().
HashRing::getLiveLocation | ( | $item | ) |
Get the location of an item on the "live" ring.
string | $item |
UnexpectedValueException |
Definition at line 201 of file HashRing.php.
References getLiveRing().
Referenced by JobQueueFederated\tryJobInsertions().
HashRing::getLiveLocations | ( | $item, | |
$limit ) |
Get the location of an item on the "live" ring, as well as the next locations.
string | $item | |
int | $limit | Maximum number of locations to return |
UnexpectedValueException |
Definition at line 213 of file HashRing.php.
References getLiveRing().
HashRing::getLiveLocationWeights | ( | ) |
Get the map of "live" locations to weight (ignores 0-weight items)
UnexpectedValueException |
Definition at line 223 of file HashRing.php.
References getLiveRing().
Referenced by JobQueueFederated\doBatchPush(), and JobQueueFederated\tryJobInsertions().
|
protected |
Get the "live" hash ring (which does not include ejected locations)
UnexpectedValueException |
Definition at line 164 of file HashRing.php.
References $liveRing.
Referenced by getLiveLocation(), getLiveLocations(), and getLiveLocationWeights().
|
final |
Get the location of an item on the ring.
string | $item |
Definition at line 86 of file HashRing.php.
References getLocations().
HashRing::getLocations | ( | $item, | |
$limit ) |
Get the location of an item on the ring, as well as the next locations.
string | $item | |
int | $limit | Maximum number of locations to return |
Definition at line 99 of file HashRing.php.
References key.
Referenced by getLocation().
HashRing::getLocationWeights | ( | ) |
Get the map of locations to weight (ignores 0-weight items)
Definition at line 135 of file HashRing.php.
References $sourceMap.
|
protected |
(location => UNIX timestamp)
Definition at line 37 of file HashRing.php.
|
protected |
UNIX timestamp.
Definition at line 39 of file HashRing.php.
|
protected |
Definition at line 35 of file HashRing.php.
Referenced by getLiveRing().
|
protected |
(location => (start, end))
Definition at line 32 of file HashRing.php.
|
protected |
(location => weight)
Definition at line 30 of file HashRing.php.
Referenced by getLocationWeights().
const HashRing::RING_SIZE = 268435456 |
Definition at line 41 of file HashRing.php.
Referenced by __construct().