Add more detailed QOS_* constants while at it Bug: T236412 Change-Id: Ia862c5111a3daf10a34fc78163301629228efa6b
15 lines
345 B
PHP
15 lines
345 B
PHP
<?php
|
|
|
|
use Wikimedia\LightweightObjectStore\ExpirationAwareness;
|
|
use Wikimedia\LightweightObjectStore\StorageAwareness;
|
|
|
|
/**
|
|
* Generic interface providing TTL constants for lightweight expiring object stores
|
|
*
|
|
* @ingroup Cache
|
|
* @since 1.27
|
|
* @deprecated 1.35
|
|
*/
|
|
interface IExpiringStore extends StorageAwareness, ExpirationAwareness {
|
|
|
|
}
|