2020-01-09 22:10:08 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
use Wikimedia\LightweightObjectStore\ExpirationAwareness;
|
|
|
|
|
use Wikimedia\LightweightObjectStore\StorageAwareness;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Generic interface providing TTL constants for lightweight expiring object stores
|
|
|
|
|
*
|
|
|
|
|
* @ingroup Cache
|
|
|
|
|
* @since 1.27
|
2022-03-06 02:55:50 +00:00
|
|
|
* @deprecated since 1.35
|
2020-01-09 22:10:08 +00:00
|
|
|
*/
|
|
|
|
|
interface IExpiringStore extends StorageAwareness, ExpirationAwareness {
|
|
|
|
|
|
|
|
|
|
}
|