This is our setup:
Windows 2003 Server Standard, SQL 2005 and ASP.NET 4.0.
We have a news site where URLs are structured like www.domain.com/This-is-my-headline-123.aspx - where 123 is the ID pointing at a record in the SQL database.
Is it possible to do caching based on this URL and if so, how would this be accomplished? I have looked at VaryByParam option of the ASP.NET caching, e.g.
<%@ OutputCache Duration="3600" VaryByParam="*"%>
But I am unsure what the best practice would be. I have read this:
Is DiskCacheProvider in ASP.Net 4.0 really exist? with disk caching and I think this is the way to go - but do you guys/gals have some input for optimal techniques to improve performance?