在Magento 1中,可以通过在您的中声明以下内容来创建自己的缓存类型config.xml
:
<global>
<cache>
<types>
<custom translate="label,description" module="module">
<label>Custom Cache</label>
<description>This is my custom cacge</description>
<tags>CUSTOM_CACHE_TAG</tags>
</custom >
</types>
</cache>
</global>
这将导致在“ 系统”>“缓存管理”下将新的缓存类型添加到后端,因此,它将添加刷新与CUSTOM_CACHE_TAG
缓存标签相关的缓存的功能。
在M2中有可能吗?如何实现?
有关接受的答案的示例实现,请参见:magento.stackexchange.com/questions/150074/…–
—
RikW
有关接受的答案的示例实现,请参见:magento.stackexchange.com/questions/150074/…–
—
RikW