I have a multi-tenant application in ASP.NET MVC. The instance of the application that will be served is function of the hostname alone (something along the lines of stackexchange, I suppose).
Each instance of the application might have a different culture setting (even "auto", to read the browser s language and try to use it), and will be localized accordingly.
In this situation, I d like to do some output caching on some of my actions. So, my questions are:
What are the possibilities to achieve output caching of a multi-tenant ASP.NET MVC application, if the output depends exclusively on the hostname (ie, ignoring the localization requirement)?
Same as (1), but now considering that the output depends on the culture settings as well?
Same as (2), but considering that the output might vary with parameters that were passed to the action?
In this case, I m considering that all the sites run from a single IIS website.