zoukankan      html  css  js  c++  java
  • .NET Out Of Memory Exception

    I am getting an Out Of Memory exception in my c# application when the memory usage for the application goes over about 1.3GB.

    I had this same problem on a 32-bit machine with 3gb of memory and it made sense back then, but now I upgraded the hardware to a 64-bit machine with 16GB memory with the high - end motherboard and RAM but the Out Of Memory exception still occurs after 1.3GB!

    I know that there are no single objects over 2GB and 1.3 is less the 2GB anyway, so the in-built MS 2GB limit on a single object is not likely to be the problem...

    It seems like there is a windows kill-switch of some sort when an app reaches a certain memory usage threshold... Then there should be a way to configure this is in the registry perhaps?

    Any help will be greatly appreciated!

    Solution1:

    There is no difference until you compile to same target architecture. I suppose you are compiling for 32 bit architecture in both cases.

    It's worth mentioning that OutOfMemoryException can also be raised if you get 2GB of memory allocated by a single collection in CLR (say List<T>) on both architectures 32 and 64 bit.

    To be able to benefit from memory goodness on 64 bit architecture, you have to compile your code targeting 64 bit architecture. After that, naturally, your binary will run only on 64 bit, but will benefit from possibility having more space available in RAM.

    Solution2:

    As already mentioned, compiling the app in x64 gives you far more available memory.

    But in the case one must build an app in x86, there is a way to raise the memory limit from 1,2GB to 4GB (which is the actual limit for 32 bit processes):

    In the VC/bin folder of the Visual Studio installation directory, there must be an editbin.exe file. So in my default installation I find it under

    C:Program Files (x86)Microsoft Visual Studio 10.0VCineditbin.exe
    

    In order to make the program work, maybe you must execute vcvars32.bat in the same directory first. Then a

    editbin /LARGEADDRESSAWARE <your compiled exe file>

    is enough to let your program use 4GB RAM. <your compiled exe file> is the exe, which VS generated while compiling your project.

    If you want to automate this behavior every time you compile your project, use the following Post-Build event for the executed project:

    if exist "$(DevEnvDir)..	oolsvsvars32.bat" (
       call "$(DevEnvDir)..	oolsvsvars32.bat"
       editbin /largeaddressaware "$(TargetPath)"
    )
    

    Sidenote: The same can be done with the devenv.exe to let Visual Studio also use 4GB RAM instead of 1.2GB (but first backup the old devenv.exe).

    from:http://stackoverflow.com/questions/14186256/net-out-of-memory-exception-used-1-3gb-but-have-16gb-installed

  • 相关阅读:
    Date Picker和UITool Bar控件简单介绍
    iOS开发UI篇—程序启动原理和UIApplication
    JS 随机生成随机数 数组
    你必须知道的28个HTML5特征、窍门和技术
    Javascript图片预加载详解
    弹性盒模型
    利用JSON.parse() 与 JSON.stringify() 实现深拷贝
    有关android及ios手机 中 input 调出数字键盘
    移动端 去除鼠标点击时的外轮廓
    H5 项目常见问题汇总及解决方案
  • 原文地址:https://www.cnblogs.com/zjoch/p/6322252.html
Copyright © 2011-2022 走看看