What is the use of event_prefix and cache_tag variable magento 2 model file
When i am looking into magneto model files i find <?php namespace MageplazaHelloWorldModel; class Post extends MagentoFrameworkModelAbstractModel implements MagentoFrameworkDataObjectIdentityInterface { const CACHE_TAG = ‘mageplaza_helloworld_post’; protected $_cacheTag = ‘mageplaza_helloworld_post’; protected $_eventPrefix = ‘mageplaza_helloworld_post’; protected function _construct() { $this->_init(‘MageplazaHelloWorldModelResourceModelPost’); } public function… Read More »What is the use of event_prefix and cache_tag variable magento 2 model file