interface MemoryCacheFactoryInterface in Apigee Edge 8
Base definition of the memory cache factory service.
Hierarchy
- interface \Drupal\apigee_edge\MemoryCacheFactoryInterface
Expanded class hierarchy of MemoryCacheFactoryInterface
All classes that implement MemoryCacheFactoryInterface
4 files declare their use of MemoryCacheFactoryInterface
- CompanyMembershipObjectCache.php in modules/
apigee_edge_teams/ src/ CompanyMembershipObjectCache.php - DeveloperCache.php in src/
Entity/ Controller/ Cache/ DeveloperCache.php - DeveloperCompaniesCache.php in src/
Entity/ DeveloperCompaniesCache.php - EntityCache.php in src/
Entity/ Controller/ Cache/ EntityCache.php
File
- src/
MemoryCacheFactoryInterface.php, line 28
Namespace
Drupal\apigee_edgeView source
interface MemoryCacheFactoryInterface {
/**
* Gets a memory cache backend class for a given cache bin.
*
* @param string $bin
* The cache bin for which a cache backend object should be returned.
*
* @return \Drupal\Core\Cache\MemoryCache\MemoryCacheInterface
* The memory cache backend object associated with the specified bin.
*/
public function get($bin) : MemoryCacheInterface;
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
MemoryCacheFactoryInterface:: |
public | function | Gets a memory cache backend class for a given cache bin. | 1 |