Sitecore Performance Optimization - Sitecore Configurations, IIS Configurations

We plan to deploy our system on a production server. I am interested in learning more about website performance optimization.

  • What optimizers are recommended for Sitecore? (Caching, other settings in web configuration)
  • What are the optimizations we can do in IIS?

Could not find a good article on these topics. Appreciate any help :).

+6
source share
1 answer

Have you looked at all the recommended Sitecore practices and Performance Tuning Guide and applied all of these?

Take a look at these tips and tricks to help optimize your Sitecore site and take a look at this lively checklist for Sitecore sites . Also a lot of good information on this John West blog post .

Have you been designed to maximize your caching performance? Make sure you configure caching correctly:

Have you tested load simulations on your site? There are plenty of tools, check out jMeter and LoadUI to simulate traffic. You can also view C # code to make suer lack of bottlenecks.

I found that in 90% of cases, many perceived performance issues come down to frontend rendering. Make sure your markup is as light as possible, your JS and CSS are minimized, and the code is optimized.

Use the available tools to see where your foreground bottlenecks are:

+18
source

Source: https://habr.com/ru/post/944597/


All Articles