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)

I need game development tutorials, I need Game development tutorials Pro...

I need Game development tutorials Project Description: We need video tutorials like lynda for game development using unity. You must have developed games before and need to s

Types of diagrams in uml, How many types of diagrams are there in UML? ...

How many types of diagrams are there in UML? There are nine types of diagrams in the UML as shown below:- 1)Use case diagram: The use case diagram describe "WHAT" of a

What is a delegate, What is a delegate? A delegate is similar to a clas...

What is a delegate? A delegate is similar to a class that is used for storing the reference to a method and invoking that method at runtime, as needed. A delegate can hold the

Microsoft application blocks, Have you ever worked with Microsoft Applicati...

Have you ever worked with Microsoft Application Blocks, if yes then which? The Application Blocks are C# & the VB.NET classes distributed as the Visual Studio projects which ca

Full time contractual programming position, Project Description: This is...

Project Description: This is a full time contractual role seeking for a sports advisory service. We are data insights consultancy specializing in sports. We consult to a number

What is managed code and managed data, What is managed code and managed dat...

What is managed code and managed data? Managed code is code that is written to target the services of the Common Language Runtime. In order to target these services, the code m

Web application for australian football league, 1  Assignment Description  ...

1  Assignment Description   This is an individual assignment. Students are referred to the Faculty's policy on plagiarism.  In this assignment you will build a prototype of a si

Develop outlook add-in for all versions, Develop Outlook Add-In for all ver...

Develop Outlook Add-In for all versions I need simple code for Outlook(express,2003,2007,2010,2013) Add-In with functionality to repeatedly send CC to the specified email(s), th

Connect my marketplace website with stripe/connect, Project Description: ...

Project Description: I am trying to connect my marketplace website with Stripe/connect. I have 5 or 6 scripts already written that just need to be adjusted so they will work: 2

Project management, What is project management? Applying the knowledge,...

What is project management? Applying the knowledge, skills, techniques, tools in project and deliver project deliverable is a short definition of the project management. It's b

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