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
11 lines
165 B
PHP
11 lines
165 B
PHP
<?php
|
|
|
|
namespace Wikimedia\WRStats;
|
|
|
|
/**
|
|
* Exception class for errors thrown by the WRStats library
|
|
*
|
|
* @since 1.39
|
|
*/
|
|
class WRStatsError extends \Exception {
|
|
}
|