Memory footprint across copies of app

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

What is the memory footprint methods & properties of a windows app running on
a server when the server spins up multiple instances of the application?

In my envirionment, we have a Citrix server farm running .Net 2.0 windows
apps. Does the framework allow for instances of the same application to
access the same memory space where these methods & properties are stored
(assuming the security context is the same for each instance)?
 
Hello,

in a terminal server environment, you should use NGEN to precompile your
assemblies. If you don't do this, every instance of the application will be
compiled in it's own memory space.

Precompiled assemblies can be shared.

Best regards,
Henning Krause
 
Back
Top