rest_oai_pmh-8.x-1.0-beta1/src/Plugin/OaiCache/Conservative.php
src/Plugin/OaiCache/Conservative.php
<?php
namespace Drupal\rest_oai_pmh\Plugin\OaiCache;
use Drupal\rest_oai_pmh\Plugin\OaiCacheBase;
/**
* Conservative cache clearing strategy.
*
* Only remove entities from the OAI cache when the entity is deleted.
*
* @OaiCache(
* id = "conservative_cache",
* label = @Translation("Conservative Cache Clearing Strategy")
* )
*/
class Conservative extends OaiCacheBase {
}
