I would like to read the RSS feed of a news agency web site and show them with ajax in my own website.
I would like to know how should I develop it to use the least server resources. The web site contains near 150 rss link, so it should update mysql database every 20~30 second for each link. Then save more usable rss value in cache by APC.
When an ajax request came from user, if it exists in APC variables, so echo it, or if doesn't exist, so read from mysql database and save in APC.
I would like to do it with Yii.
Is there any way to do it with low uses of resource?