In asp.net, does the the JIT compiler noramlly just comile the IL code once or it compiles every time a page is requested? -
I doubt the pre-case if yes, do not you think the name of Jet is misleading?
As far as I know, jit is a hybrid in nature, one of the reasons for its name is.
Actually it uses a V-Table where all the functions are mapped during its first part. Jet determines whether to compile based on whether or not they have been described statically or not. Fixed compiled code is cached & amp; It is not compiled again, but besides this, it runs a normal translation every time
So it is not whether it compiles once or every time, but the fact is that it is going on & Amp; Determines to compile & amp; Not every time during just in time run time
Comments
Post a Comment