wiki.techinc.nl/includes/libs/WRStats/WRStatsError.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

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 {
}