Memory footprint across copies of app

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)?
 
H

Henning Krause [MVP - Exchange]

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
 
G

Guest

Thanks! I'll check into this. I'm sure it will make our Citrix people very
happy.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top