0
我使用Symfony 3.1的cache component來存儲我的實體的一些自定義元數據。只要在與這些元數據相關聯的任何文件中進行更改,我都想使其無效。Symfony 3.1緩存組件中的緩存失效
我沒有找到一種方法來告訴Symfony或緩存組件,特別是監視一組特定文件的更改,我錯過了什麼?
下面我用它來創建我的緩存條目池代碼:
<?php
class MetadataCacheFactory implements MetadataCacheFactoryInterface
{
const CACHE_NAMESPACE = 'my_namespace';
/** @var string */
protected $cacheDir;
public function __construct(KernelInterface $kernel)
{
$this->cacheDir = $kernel->getCacheDir();
}
/**
* {@inheritdoc}
*/
public function create(): CacheItemPoolInterface
{
return AbstractAdapter::createSystemCache(self::CACHE_NAMESPACE, 0, null, $this->cacheDir);
}
}
和代碼使用它:
<?php
class ExampleMetadataFactory implements MetadataFactoryInterface
{
const CACHE_KEY = 'example_metadata';
[...]
/** @var ExampleMetadata */
protected $metadata;
public function __construct(MetadataCacheFactoryInterface $cacheFactory)
{
$this->cache = $cacheFactory->create();
$this->metadata = null;
}
/**
* {@inheritdoc}
*/
public function create(): ExampleMetadata
{
if ($this->metadata !== null) {
return $this->metadata;
}
try {
$cacheItem = $this->cache->getItem(md5(self::CACHE_KEY));
if ($cacheItem->isHit()) {
return $cacheItem->get();
}
} catch (CacheException $e) {
// Ignore
}
$this->metadata = $this->createMetadata();
if (!isset($cacheItem)) {
return $this->metadata;
}
$cacheItem->set($this->metadata);
$this->cache->save($cacheItem);
return $this->metadata;
}
}
當我看到在運行時代碼中,AbstractAdapter
選擇放棄我PhpFilesAdapter
(公平的開發我猜)。
但當我看這個適配器的代碼,我發現這一點:
<?php
protected function doFetch(array $ids) {
[...]
foreach ($ids as $id) {
try {
$file = $this->getFile($id);
list($expiresAt, $values[$id]) = include $file;
if ($now >= $expiresAt) {
unset($values[$id]);
}
} catch (\Exception $e) {
continue;
}
}
}
所以沒有邏輯可言檢查期滿除了到期日。
你知道一種方法來使文件更改時的緩存無效(當然在開發環境中)嗎?或者讓我自己來實現它..?
感謝您的幫助。