Explain image generator (ngen.exe), DOT NET Programming

Assignment Help:

Image Generator (Ngen.exe)

The Ngen.exe (Native Image Generator) allows you to run the JIT compiler on your assembly's MSIL and generate native machine code which is cached to disk. When the image is created, .NET runtime will use the image to run the code rather than from the hard disk. The Running of Ngen.exe on an assembly potentially allows the assembly to load & execute faster, since it restores the code and data structures from the native image cache rather than generating them dynamically.

Following are some points to keep on mind for Native Image Generator:-

1) The Native images load faster as compared to MSIL as  JIT compilation and type-safety verification is eliminated.

2) If you are sharing code between process the Ngen.exe increase the performance significantly. As the Native image generated Windows PE file so a single DLL file is shared across applications. On contrast JIT produced code are private to an assembly and can not be shared.

3) Start up time performance improves a lot. We  get considerable gains when applications share component assemblies because after the first application has been started the shared components are already loaded for subsequent applications. If assemblies in the  application must be loaded from hard disk, it does not benefit as much from native images as the hard disk access time shadows everything.

4)The Assemblies in the GAC do not benefit from Native image generator as the loader performs extra validation on the strong named assemblies thus shadowing the benefits of Native Image Generator.

5) If any one of the assemblies changes then Native image should also be updated.

6)You should have the administrative privilege for running the  Ngen.exe.

7)While this may fasten your application start up time as the code is statically compiled but it can be somewhat slower than the code generated dynamically through  the JIT compiler.Thus you need to compare how the whole application performance with Ngen.exe and how iot goes without it.

To run the Ngen.exe, we can use the following command line.

ngen.exe install

This will synchronously precompile the specified assembly and all of its dependencies. And the generated native images are stored in the native image cache.

In the .NET Framework 2.0 there is a service (.NET Runtime Optimization Service) which can precompile managed assemblies at  the background. Assemblies can be schedule  to be precompiled asynchronously by queueing them up with the NGEN Service. We use the following command line.

ngen.exe install /queue:

Assemblies that are critical to your application's start up time should either be precompiled synchronously or by asynchronously with  1. Priority 1 &  2 assemblies are precompiled aggressively while the Priority 3 assemblies are only precompiled during the machine idle-time. Synchronously precompiling your critical assemblies assure you that the native images will be available on prior to the first time your end user launches the application but increases the time taken to run your application's set up program.

You can uninstall an assembly and its all dependencies (if no other assemblies are dependent on them) from the native image cache by running the following command.

ngen.exe uninstall

Native images created using Ngen.exe cannot be deployed; instead they need to be created on the end user's machine. These commands therefore need to be issued as the part of the application's setup program. The .NET Visual Studio can be used to implement this behavior by defining custom actions in a Microsoft Installer (MSI) package.


Related Discussions:- Explain image generator (ngen.exe)

Simple fb integration in ms-sql and asp.net, Simple FB Integration in MS-SQ...

Simple FB Integration in MS-SQL and ASP.NET I am seeking urgent project to be done, please I am interested in someone who will present demo for retrieving personal informatio

Explain application start and session start subroutines, Can you give an ex...

Can you give an example of what might be best suited to place in the application_Start and Session_Start subroutines? Application Start - We can place code to initialize

Data set and data reader, What is difference between data set and data read...

What is difference between data set and data reader? Some major differences between dataset and datareader are as folows :- 1) The DataReader gives forward-only and read-onl

Consuming a web service with soap on c# .net, Consuming a web service with ...

Consuming a web service with SOAP on c# .NET Project Description: I need to consume a web service with SOAP. I have xml file and some description. I need it to be done

Accepting a list of 5 items - c# program, Accepting a List of 5 Items - C# ...

Accepting a List of 5 Items - C# Program Hello, I've been trying so many codes for this but those codes didn't work well. Please write the code for Accepting a List of 5 Items

What are methods, What are methods? Methods are the building blocks of ...

What are methods? Methods are the building blocks of a class, in which they are linked together to share and process data to produce the result. In other words, a method is a b

What is a dynamic update, What is a dynamic update? Dynamic update is a...

What is a dynamic update? Dynamic update is a powerful feature of WF that describes the ability of WF to modify the implementation path of a running workflow. This feature is u

Value types and reference types, What are Value types and Reference types ...

What are Value types and Reference types The Value types directly contain their data which are either allocated on the stack or allocated in-  Line in a  structure. The Refe

Require a visual basic app developer, I require a visual basic (VB) app dev...

I require a visual basic (VB) app developer to enhance an existing application. There are very few manual inputs in the application which I need to be imported via excel file. E

Add in bitcoin payment option in website, Add in bitcoin payment option in ...

Add in bitcoin payment option in website Project Description: Include bitcoin files to magento for payment options on website. It is just including the files to the magent

Write Your Message!

Captcha
Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd