What are advantages of caching in ASP.NET MVC?

These are following advantages of caching:-
1. Reduce hosting server round-trips
2. When content is cached at the client or in proxies, it cause minimum request to server.
3. Reduce database server round-trips
4. When content is cached at the web server, it can eliminate the database request.
5. Reduce network traffic
6. When content is cached at the client side, it also reduce the network traffic.
7. Avoid time-consumption for regenerating reusable content

8. When reusable content is cached, it avoid the time consumption for regenerating reusable content.
9. Improve performance
10. Since cached content reduce round-trips, network traffic and avoid time consumption for regenerating      reusable content which cause a boost in the performance.

No comments:

Post a Comment