interface VariationCacheInterface in VariationCache 8
An interface defining variation cache factory classes.
Hierarchy
- interface \Drupal\variationcache\Cache\VariationCacheInterface
Expanded class hierarchy of VariationCacheInterface
All classes that implement VariationCacheInterface
File
- src/
Cache/ VariationCacheInterface.php, line 10
Namespace
Drupal\variationcache\CacheView source
interface VariationCacheInterface {
/**
* Gets a cache entry based on cache keys.
*
* @param string[] $keys
* The cache keys to retrieve the cache entry for.
* @param \Drupal\Core\Cache\CacheableDependencyInterface $initial_cacheability
* The cache metadata of the data to store before other systems had a chance
* to adjust it. This is also commonly known as "pre-bubbling" cacheability.
*
* @return object|false
* The cache item or FALSE on failure.
*
* @see \Drupal\Core\Cache\CacheBackendInterface::get()
*/
public function get(array $keys, CacheableDependencyInterface $initial_cacheability);
/**
* Stores data in the cache.
*
* @param string[] $keys
* The cache keys of the data to store.
* @param mixed $data
* The data to store in the cache.
* @param \Drupal\Core\Cache\CacheableDependencyInterface $cacheability
* The cache metadata of the data to store.
* @param \Drupal\Core\Cache\CacheableDependencyInterface $initial_cacheability
* The cache metadata of the data to store before other systems had a chance
* to adjust it. This is also commonly known as "pre-bubbling" cacheability.
*
* @see \Drupal\Core\Cache\CacheBackendInterface::set()
*
* @throws \LogicException
* Thrown when cacheability is provided that does not contain a cache
* context or does not completely contain the initial cacheability.
*/
public function set(array $keys, $data, CacheableDependencyInterface $cacheability, CacheableDependencyInterface $initial_cacheability);
/**
* Deletes an item from the cache.
*
* To stay consistent with ::get(), this only affects the active variation,
* not all possible variations for the associated cache contexts.
*
* @param string[] $keys
* The cache keys of the data to delete.
* @param \Drupal\Core\Cache\CacheableDependencyInterface $initial_cacheability
* The cache metadata of the data to store before other systems had a chance
* to adjust it. This is also commonly known as "pre-bubbling" cacheability.
*
* @see \Drupal\Core\Cache\CacheBackendInterface::delete()
*/
public function delete(array $keys, CacheableDependencyInterface $initial_cacheability);
/**
* Marks a cache item as invalid.
*
* To stay consistent with ::get(), this only affects the active variation,
* not all possible variations for the associated cache contexts.
*
* @param string[] $keys
* The cache keys of the data to invalidate.
* @param \Drupal\Core\Cache\CacheableDependencyInterface $initial_cacheability
* The cache metadata of the data to store before other systems had a chance
* to adjust it. This is also commonly known as "pre-bubbling" cacheability.
*
* @see \Drupal\Core\Cache\CacheBackendInterface::invalidate()
*/
public function invalidate(array $keys, CacheableDependencyInterface $initial_cacheability);
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
VariationCacheInterface:: |
public | function | Deletes an item from the cache. | 1 |
VariationCacheInterface:: |
public | function | Gets a cache entry based on cache keys. | 1 |
VariationCacheInterface:: |
public | function | Marks a cache item as invalid. | 1 |
VariationCacheInterface:: |
public | function | Stores data in the cache. | 1 |