Hello All,
I have a Window service developed using Visual Studio .Net 2003. I am using VC++ .Net for the service development. The physical and virtual memory consumption is very high. How should i minimize this memory consumption. Please give me some clue to achieve this.
Thanks
Comments
:
: I have a Window service developed using Visual Studio .Net 2003. I
: am using VC++ .Net for the service development. The physical and
: virtual memory consumption is very high. How should i minimize this
: memory consumption. Please give me some clue to achieve this.
:
: Thanks
- Don't use the .Net, but only the windows API. This will remove all the .Net framework footprint.
- Go over your code and try to memory-optimalize it. This will make you program slower, because it often involves removing various intermediate heap-variables or convenience variables and replacing them with function calls.
- Try to remove all code duplication.