.NET assembly cache / ngen / jit image warm-up and cool-down behavior

Posted by Mike Jiang on Stack Overflow See other posts from Stack Overflow or by Mike Jiang
Published on 2009-09-14T19:23:54Z Indexed on 2010/03/31 9:03 UTC
Read the original article Hit count: 579

Filed under:
|
|
|
|

Hi,

I have an Input Method (IME) program built with C#.NET 2.0 DLL through C++/CLI. Since an IME is always attaching to another application, the C#.NET DLL seems not able to avoid image address rebasing.

Although I have applied ngen to create a native image of that C#.NET 2.0 DLL and installed it into Global Assembly Cache, it didn't improved much, approximately 12 sec. down to 9 sec. on a slow PIII level PC.

Therefore I uses a small application, which loads all the components referenced by the C#.NET DLL at the boot up time, to "warm up" the native image of that DLL. It works fine to speed up the loading time to 0.5 sec.

However, it only worked for a while. About 30 min. later, it seems to "cool down" again.

Is there any way to control the behavior of GAC or native image to be always "hot"? Is this exactly a image address rebasing problem?

Thank you for your precious time.

Sincerely,

Mike

© Stack Overflow or respective owner

Related posts about gac

Related posts about ngen