Dans Magento 1, il était possible de créer votre propre type de cache en déclarant ce qui suit dans votre 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>
Il en résultera un nouveau type de cache ajouté au backend sous Système> Gestion du cache et ainsi, il ajoutera la possibilité de vider le cache lié à la CUSTOM_CACHE_TAG
balise de cache.
Est-ce possible en M2 et comment y parvenir?