Posted on 05/03/2015 17:13:11
Hi Dmitrij,
You can find a few recommendations in the documents for installation and requirements. Is there anything in particular that you are looking for?
If you set up gzip compression (both static and dynamic) and correct caching headers then you'll get some major performance gains with little effort.
Some additional tips and tricks can be found in the web.config files for HTML5 Boilerplate and Web Developer Checklist for ASP.NET Performance.
Rebuilding fragmented indexes on the SQL Server database will also result in better performance.
The rest is more or less related to Dynamicweb configuration (cache, CDN, etc.) and the front end implementation (minify, combine, etc.).
You could setup some advanced caching or install someting like IISpeed, but for most sites this would be overkill... IMHO.
Usually, I just use PageSpeed Insights and WebPageTest in order to measure the performance of a site and then work from there trying to optimize the parts that are too slow.
You can even setup automated testing in your build process and monitoring on the server, so that you'll get warnings when something is causing problems. I don't have much experience with that though.
BR, Morten