7

我正在编写一个使用一些自定义缓存机制的模块,我希望我的缓存可以从管理区域以及核心 Magento 缓存中清除。

此外,我想检查是否仅为我的模块启用了缓存,然后根据此选择是否进行缓存。

我确信这是可能的,但不知道如何。

4

1 回答 1

21

Magento 使这对您来说非常容易,基本上只需要在您的模块全局配置中添加几行代码......

<global>
    <!-- Other global config -->
    <cache>
        <types>
            <namespace_module module="namespace_module" translate="label description">
                <label>Your modules cache label</label>
                <description>Description of your modules cache</description>
                <tags>YOUR_MODULES_CACHE_TAGS</tags>
            </namespace_module>
        </types>
    </cache>
    <!-- Other global config -->
</global>

检查缓存是否处于活动状态的逻辑将遵循以下内容......

$cacheGroup = 'namespace_module';
$useCache = Mage::app()->useCache($cacheGroup);
if (true === $useCache) {
    // Cache is active
} else {
    // Cache is not active
}
于 2012-09-30T18:25:24.217 回答