|
|
|
|
|
by AnotherGoodName
780 days ago
|
|
It's not actually using 4gb of ram. Pretty much every memory reporting tool cannot handle paging and will report total allocated. You can create a one line c program today that just calls mmap(file) on a large 4gb media file and your os will claim 4gb used. Actually measuring real physical ram usage is hard. I'd be looking for page table misses (and the likely noticable resulting performance issues) as a better indication of any potential issues. |
|