Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a 32 bit version of a .net application running in two different machines . One is 32 bit machine and the other is 64 bit machine.

In the 64 bit environment the 32 bit application runs in WoW64 environment.

The 64 bit machine configuration is 4GB RAM.

But the same application with the same workflow is consuming 500MB in 32 bit OS while it is taking more than 1GB in 64 bit OS and crashes.

I read the following articles related to this.

http://blogs.sepago.de/helge/2008/03/11/windows-x64-all-the-same-yet-very-different-part-5

http://blogs.citrix.com/2011/10/13/wow64-memory-mapping-of-32bit-apps-running-on-a-64bit-windows/

But their analysis is not deterministic. Had any one of you faced this issue? Are there any recommendations for a 32 bit app to run in 64 bit environment?

share|improve this question
1  
Why is it taking so much memory in the first place? – nneonneo Sep 25 '12 at 6:08
You need to create a lot of kernel-level data structures to get a 500 MB difference between the two. I can't imagine how this is sensibly possible... – Mehrdad Sep 25 '12 at 6:09
@nneonneo: It is a .Net application bundled with frequent SQL access. That workflow is quite complex with thousands of SQL calls and hence it is consuming 500MB in 32 bit environment. – Rockstart Sep 25 '12 at 6:10
1  
1000 sequential SQL calls shouldn't amount to much unless you're pushing some seriously big datasets around. Have you checked the project references? Try making a blank project with dummy calls into every one of your current references and see if the memory usage goes crazy. – nneonneo Sep 25 '12 at 6:11
@nneonneo: It is not about it is consuming more memory. My worry here is why is there a large difference between 64 bit OS and 32 bit OS memory usage – Rockstart Sep 25 '12 at 6:13
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.