Process Memory limit of 64-bit process

后端 未结 5 2028
执念已碎
执念已碎 2021-02-05 08:02

I currently have a 32-bit .Net application (on x86 Windows) which require lots of memory. Recently it started throwing System.OutOfMemoryException\'s.

So, I am planning

5条回答
  •  滥情空心
    2021-02-05 08:37

         Moving to a 64 bit definitely helps cut out the OutOfMemoryExceptions, but you might want to focus on your system architecture and coding mechanisms to avoid these as it would only be a matter of time before they surface on the 64 bit machine as well.
        One more advantage of moving to 64 bit machines is that with an 8 TB of virtual address space, Garbage collection for .NET happens infrequently. This does improve application performance by increasing the available virtual space for your program.

提交回复
热议问题