I have a sql query (stored proc) that takes about 8-10seconds to return before the results are displayed in a webgrid. What is best practice for performance regarding cacheing
It's caching this action.
[OutputCache(Duration = 300)] public ActionResult Action(){ //some operation return View() }