When optimizing an MVC application for performance, where should caching strategies be implemented in relation to servlets?

  • In a separate caching layer
  • In the Controller
  • In the Model
  • In the View
Caching strategies, for optimizing performance, should be implemented in the Model. The Model is responsible for data access and processing, making it an appropriate place to introduce caching mechanisms.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *