1

Is it possible to use Server Caching on Windows IIS6?

I know it is a feature of IIS7, but is there a way to use server caching on IIS6? Maybe there is some additional software?

I would like to use server cache for pages that need a lot of SQL Database connections, but where the data doesn't change that much. So for semi-dynamic content.

Pierre-Olivier
  • 3,104
  • 19
  • 37
Vinzcent
  • 1,438
  • 6
  • 33
  • 59

1 Answers1

1

Absolutely. Use the @OutputCache directive.

John Pick
  • 5,562
  • 31
  • 31
CodeMonkey1313
  • 15,717
  • 17
  • 76
  • 109
  • Thank you for your response. Is the cache for every user different or see all the users the same cached page? – Vinzcent Apr 03 '12 at 06:42