Best practices for caching results of JSP pages?
- by Spines
My application has an MVC structure.
How should I structure my application to allow for maximum caching?
Is it sufficient to only cache the model objects that are passed to the JSP views?
Or will there be a significant performance boost from caching the results of the rendering of the JSP views too?