As magento1.9.2 is added cachetags function in to construct functon i must have to give seperate cachetags for each block element because its get conflict with varnish to read key. i have solved this issue in.phtml file to set key like below
$this->getLayout()->createBlock('cms/block','',
array(
'cache_lifetime' => false,
'cache_tags' => array(Mage_Cms_Model_Block::CACHE_TAG."_twocmspages")
))->setBlockId("twocmspages")->toHtml();
but if need to assign same cache_tags using xml with setMethod how can i do this.
<block type="cms/block" name="block_id">
... set cachetag here
</block>
Is any one has idea how to add cache_tag array arrgument from XML ?
your help will be appreciated here.