Re: [TYPO3-english] Caching Framework questions

2012-05-21 Thread Victor Livakovsky
Hi, Jigal. If you need caching in your extension enetcache [1] can be useful for you. It makes the caching framework available for extensions. [1] http://typo3.org/extensions/repository/view/enetcache Thank you for the link. I read the manual, and it seems to be a really great tool for

Re: [TYPO3-english] Caching Framework questions

2012-05-21 Thread François Suter
Hi Victor, Or even, what is more important: is it bad to use system's 'cache_hash' instead of own one? It's not really bad, it's even meant for storing various stuff. However the cache_hash may become very large if you have a big web site, even more so if you use multiple languages. If you

[TYPO3-english] Caching Framework questions

2012-05-17 Thread Victor Livakovsky
Hi, list. I've faced a problem, when I need to reuse results of resource-eating processing multiple times with multiple page-loads. Since I don’t want to reinvent the wheel, I decided to try caching framework possibilities.

Re: [TYPO3-english] Caching Framework questions

2012-05-17 Thread Jigal van Hemert
Hi, On 17-5-2012 16:42, Victor Livakovsky wrote: I've faced a problem, when I need to reuse results of resource-eating processing multiple times with multiple page-loads. Since I don’t want to reinvent the wheel, I decided to try caching framework possibilities. If you need caching in your