Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I asked myself how I can debug the block caches of Magento. I want to know which block is cached and how long is it cached?

For example there is a functionality under System > Configuration > Developer > Debug > [...] Hints. If I turn on this options I receive all the block names and their included template. I just want the same for the caching. I would like to know, which block, if it is cached or not, which cache id and how long it caches the block.

Does anybody has an idea or maybe a solution?

An idea would be enough to start :)

Thanks in advance!

share|improve this question

1 Answer

$block->getData('cache_lifetime'); should return the number of seconds the block is to be cached.

http://www.magentocommerce.com/wiki/5_-_modules_and_development/block_cache_and_html_ouput

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.