Re: How: multiple program instances sharing same data
What counts here is the Private part, so you should watch the Private
Process Explorer shows a graph of history of private bytes, so this is
very useful.
Zytan
What counts here is the Private part, so you should watch the Private
Process counters for your process. The GC heap is part of the private
memory
of a process, the amount of memory you consume from the GC heap depends
on
your allocation scheme, the more and the larger the objects you create
,the
larger the GC heap grows and consequently the larger your Private bytes.
memory
of a process, the amount of memory you consume from the GC heap depends
on
your allocation scheme, the more and the larger the objects you create
,the
larger the GC heap grows and consequently the larger your Private bytes.
very useful.
Zytan
Comment