wiki.techinc.nl/includes/libs/WRStats/LocalEntityKey.php
Tim Starling bcbfc9ccfc Introduce new WRStats library for write-read stats
A library for storage of counter value time series statistics, based
around the observation that memcached getMulti() is apparently fast
enough to do this in a simple manner, with incremented values stored
in time window buckets.

Bug: T310662
Change-Id: I26b1cdba0a06ad16ad8bb71b455e1b6180924d17
2022-07-05 10:35:19 +10:00

15 lines
199 B
PHP

<?php
namespace Wikimedia\WRStats;
/**
* Entity key with global=false
*
* @newable
* @since 1.39
*/
class LocalEntityKey extends EntityKey {
public function isGlobal() {
return false;
}
}