Answer by albertopq for Large RSS feed. How to avoid slowing down the server...
It seems to be more a memory problem. Even it is not calculated, when you retrieve it from the cache, it is stored in a varibale, and it takes a lot of memory.Write a static file or increase the memory...
View ArticleAnswer by ajreal for Large RSS feed. How to avoid slowing down the server...
Unlikely you going to change the feed through out the day.So by just cache is not good enough, cache it as static file, update it via crontab daily.And applied mod_deflate likeAddOutputFilterByType...
View ArticleAnswer by FatherStorm for Large RSS feed. How to avoid slowing down the...
Ideally, if you have full control of the webserver, this would be a perfect time to use MEMCACHE...
View ArticleAnswer by Michael Irigoyen for Large RSS feed. How to avoid slowing down the...
You could set a cron to write the RSS feed to the filesystem every 5, 10, .... minutes. This way, the file is already prepared and just needs to be opened instead of processed every time it's hit.
View ArticleAnswer by derobert for Large RSS feed. How to avoid slowing down the server...
There is no reason serving a file out of cache should take any appreciable server time. Something is wrong with your caching. Or maybe you're seeing the timeouts when the cache is stale, in which case...
View ArticleLarge RSS feed. How to avoid slowing down the server when retrieved?
I have added an RSS feed on a Zen-cart store, PHP 5.2, apache2. The store has some 25.000 products with their name, description, price, image, etc.The RSS is stored in a cache to avoid running the...
View Article