"Alvin Bruney [ASP.NET MVP]" <
www.lulu.com/owc> wrote in message
No, ngen is not intended for server type applications. In fact, the
ASP.NET engine will simply ignore the ngen image and revert back to
the
original image. It won't tell you so, so you might think it is working
but
it really isn't (something to do with shared assemblies, but it isn't
really important). You should be simply using the site warmer feature
of
ASP.NET to keep the application warm.
Hmm.... This is the first time I've heard that NGen on ASP .NET
projects
doesn't do anything. Can you point me to some documentation about that?
Also, what is the "site warmer" feature you are referring to?
Thanks.
--
Regards,
Alvin Bruney [MVP ASP.NET]
[Shameless Author plug]
The O.W.C. Black Book, 2nd Edition
Exclusively on
www.lulu.com/owc $19.99
-------------------------------------------------------
Hello,
we have a small application on one server that does every 10 minutes
(cronjob) some filetasks and very basic SQL queries against an
installed SQL Server Express instance there.
Does it make sense to ngen that application?