If I add the following to my application/controller
[OutputCache(Duration = 7200)]
And I have two users on the site, User1 & User2. If User1 browses to a page with the above OutputCache turned on, the server caches the HTML in the page.
If User2 then requests the same page, does the server have to re-execute the page (because it is a different user) or does it use the same cached copy from when User1 accessed the page?