If at first you don't succeed, call it version 1.0

Contact Me

Sarvesh Kushwaha
Email : sarveshkushwaha@outlook.com

Total Pageviews

Powered by Blogger.

Showing posts with label ASP.NET Performance. Show all posts
Showing posts with label ASP.NET Performance. Show all posts

Sunday, 24 August 2014

Application Initialization in IIS 7.5 and IIS 8


Why we need Application initialization ?

On first HTTP requests asp.net applications both asp.net web forms and asp.net mvc application requires initialization tasks and "warm up" tasks (Startup processing , generating contents) etc.

Application initialization proactively loads and initialize all the dependencies like database connection , compilation of asp.net code and loading of assemblies etc...

Benefits of Application initialization :

  • its decreases the first response time by preloading the application
  • Can set a static page to increase the user experience while application is initializing
  • Provides overlapped process recycling 

Friday, 22 August 2014

ASP.NET Precompilation for Deployment


Benefits of Precompilation in ASP.NET:

  • Initial response of application will be faster for users, because code and files will not have to be compiled at the first time any user requested.
  • We can ensure error free application at compile time
  • From security concern people who have access to production server cannot see the source code and cannot make the changes(if you have chose the option of not updatable at the time of publish).
  • Large websites must use this precompilation.

Sunday, 6 October 2013

Tips and Tricks for Faster Asp.NET and Asp.net MVC applications


I have studied these tips and tricks from many websites and blogs then tried them on my applications , authenticated those tips and tricks myself and completed this presentation .Although points i have mentioned are just suggestions not the benchmarks .