summaryrefslogtreecommitdiff
path: root/includes/poolcounter/PoolCounter.php
diff options
context:
space:
mode:
Diffstat (limited to 'includes/poolcounter/PoolCounter.php')
-rw-r--r--includes/poolcounter/PoolCounter.php9
1 files changed, 5 insertions, 4 deletions
diff --git a/includes/poolcounter/PoolCounter.php b/includes/poolcounter/PoolCounter.php
index 5692d731..1ec14aa1 100644
--- a/includes/poolcounter/PoolCounter.php
+++ b/includes/poolcounter/PoolCounter.php
@@ -192,10 +192,11 @@ abstract class PoolCounter {
}
/**
- * Given a key (any string) and the number of lots, returns a slot number (an integer from the [0..($slots-1)] range).
- * This is used for a global limit on the number of instances of a given type that can acquire a lock.
- * The hashing is deterministic so that PoolCounter::$workers is always an upper limit of how many instances with
- * the same key can acquire a lock.
+ * Given a key (any string) and the number of lots, returns a slot number (an integer from
+ * the [0..($slots-1)] range). This is used for a global limit on the number of instances of
+ * a given type that can acquire a lock. The hashing is deterministic so that
+ * PoolCounter::$workers is always an upper limit of how many instances with the same key
+ * can acquire a lock.
*
* @param string $key PoolCounter instance key (any string)
* @param int $slots The number of slots (max allowed value is 65536)