Dean Harding
Mon, 22 Jan 2007 14:12:23 -0800
> Thanks a lot for you reply. Currently the memory limit is not the problem > cause i enabled "LARGEADDRESSAWARE"-Option.
Have you got 4GB of PHYSICAL memory in your computer? If not, /3GB + /LARGEADDRESSAWARE would be quite useless (in terms of a performance increase anyway) and you'd be much better off just running straight off the disk. Besides, the way the garbage collector in .NET works, you actually need a fair amount of extra virtual memory than what you are actually using. So even with /largeaddressaware, you're probably not going to get very close to the 3GB limit because of the overhead. Of course, if you have a 64-bit machine, things are a little different... Dean.