In Magento 1, è stato possibile creare il proprio tipo di cache dichiarando quanto segue nel proprio 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>
Si tradurrà in un nuovo tipo di cache aggiunto al back-end in Sistema> Gestione cache e, quindi, aggiungerà la possibilità di svuotare la cache relativa al CUSTOM_CACHE_TAG
tag cache.
È possibile in M2 e come raggiungerlo?