Caching web page data, Database or File

Posted by Mahdi on Stack Overflow See other posts from Stack Overflow or by Mahdi
Published on 2012-05-30T18:51:47Z Indexed on 2012/05/30 22:40 UTC
Read the original article Hit count: 305

Filed under:
|
|
|

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.

© Stack Overflow or respective owner

Related posts about ASP.NET

Related posts about database