End of an Era!

by abhilashca 6. October 2011 20:09


steve

Finally, An Era has come to an End. The world’s most successfully and inspired legend has passed away! Sad smile

 

Categories: Legends | Apple

Enable/Disable multi-core JIT compilation in ASP.NET vNext

by abhilashca 1. October 2011 18:35

 

One of the feature implemented as part of performance improvement in ASP.NET vNext is – multi-core JIT compilation. This give a better performance boost specially after a  cold site boot (e.g.. AppPool recycle, etc). This functionality is implemented in System.Runtime.ProfileOptimization.StartProfile method.

Thankfully, this feature is enabled by default. You don’t have to make your hands dirty to enable it. And, if you want to turn-off this feature, then do include the below code in your website’s web.config file.

   1: <system.web> 
   2:     <compilation profileGuidedOptimizations="None"  />
   3: </system.web>

Thanks.

ASP.NET vNext

by abhilashca 1. October 2011 17:55


Did you hear that? ASP.NET vNext is around the corner!

Check out here to know what’s new in ASP.NET vNext. I’m so impressed with the new set of features tied with the ASP.NET framework.

Get Ready! Sharpen your tools!

 

Categories: ASP.NET