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
15 lines
199 B
PHP
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;
|
|
}
|
|
}
|