2
마 젠토 2 : 자신 만의 커스텀 캐시 유형을 만드는 방법?
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에서 가능합니까? …