Zend certified PHP/Magento developer

How to see new eav attribute label in adminhtml withour clear cache?

I am trying to save value into table ‘eav_attribute_label’

My code

INSERT INTO `eav_attribute_label`(`attribute_label_id`, `attribute_id`, `store_id`, `value`) VALUES (0,257,3,'test')

And I can see my value in table after that query – https://prnt.sc/1qh6ifr

But in admin grid I don’t see new value – https://prnt.sc/1qh6l2p
Only after command mage c:f I will see my value, but how can I disable this?

I really want to see my value without clearing cach. Is it possible?