Caching web page data, Database or File
- by Mahdi
I am creating an RSS reader application that requests the RSS from my server. I mean, the RSS is first downloaded to my server, then application downloads it from my server.
I want to create RSS cache for this. And for example, each RSS would be refreshed every 1 minute. So, If 10 users request RSS of example.com in 1 minute, my server will download it only for the first time, and in other 9 requests, RSS will be loaded from cache.
My question is, Should I use a Database (MSSQL) for this purpose? or I should use files?
I have no limit in Database size nor in file size...
EDIT: I'm using ASP.NET for the server.