Exception
9 months ago
Logging
9 months ago
Persister
9 months ago
Region
9 months ago
AssociationCacheEntry.php
9 months ago
CacheConfiguration.php
9 months ago
CacheEntry.php
9 months ago
CacheException.php
9 months ago
CacheFactory.php
9 months ago
CacheKey.php
9 months ago
CollectionCacheEntry.php
9 months ago
CollectionCacheKey.php
9 months ago
CollectionHydrator.php
9 months ago
ConcurrentRegion.php
9 months ago
DefaultCache.php
9 months ago
DefaultCacheFactory.php
9 months ago
DefaultCollectionHydrator.php
9 months ago
DefaultEntityHydrator.php
9 months ago
DefaultQueryCache.php
9 months ago
EntityCacheEntry.php
9 months ago
EntityCacheKey.php
9 months ago
EntityHydrator.php
9 months ago
Lock.php
9 months ago
LockException.php
9 months ago
MultiGetRegion.php
9 months ago
QueryCache.php
9 months ago
QueryCacheEntry.php
9 months ago
QueryCacheKey.php
9 months ago
QueryCacheValidator.php
9 months ago
Region.php
9 months ago
RegionsConfiguration.php
9 months ago
TimestampCacheEntry.php
9 months ago
TimestampCacheKey.php
9 months ago
TimestampQueryCacheValidator.php
9 months ago
TimestampRegion.php
9 months ago
index.php
9 months ago
CacheFactory.php
23 lines
| 1 | <?php |
| 2 | declare (strict_types=1); |
| 3 | namespace MailPoetVendor\Doctrine\ORM\Cache; |
| 4 | if (!defined('ABSPATH')) exit; |
| 5 | use MailPoetVendor\Doctrine\ORM\Cache; |
| 6 | use MailPoetVendor\Doctrine\ORM\Cache\Persister\Collection\CachedCollectionPersister; |
| 7 | use MailPoetVendor\Doctrine\ORM\Cache\Persister\Entity\CachedEntityPersister; |
| 8 | use MailPoetVendor\Doctrine\ORM\EntityManagerInterface; |
| 9 | use MailPoetVendor\Doctrine\ORM\Mapping\ClassMetadata; |
| 10 | use MailPoetVendor\Doctrine\ORM\Persisters\Collection\CollectionPersister; |
| 11 | use MailPoetVendor\Doctrine\ORM\Persisters\Entity\EntityPersister; |
| 12 | interface CacheFactory |
| 13 | { |
| 14 | public function buildCachedEntityPersister(EntityManagerInterface $em, EntityPersister $persister, ClassMetadata $metadata); |
| 15 | public function buildCachedCollectionPersister(EntityManagerInterface $em, CollectionPersister $persister, array $mapping); |
| 16 | public function buildQueryCache(EntityManagerInterface $em, $regionName = null); |
| 17 | public function buildEntityHydrator(EntityManagerInterface $em, ClassMetadata $metadata); |
| 18 | public function buildCollectionHydrator(EntityManagerInterface $em, array $mapping); |
| 19 | public function getRegion(array $cache); |
| 20 | public function getTimestampRegion(); |
| 21 | public function createCache(EntityManagerInterface $entityManager); |
| 22 | } |
| 23 |