0

I'm getting out of memory errors in my applications. But it appears that I'm not out of physical memory? I'm only hitting the committed memory limit.

Text

6
  • 1
    Did you perhaps disable the page file or limit its size? Don’t.
    – Daniel B
    Commented Jul 11, 2021 at 9:03
  • @DanielB O, I thought it was good to disable/limit swap to disk? Commented Jul 11, 2021 at 9:06
  • Disabling the swap file prevents data pages being paged out. So Windows will page out code pages to the exe, dll, or font file. You are not out of memory. You need to paste details about the program. Commented Jul 11, 2021 at 9:09
  • This isn’t about code vs. data. It’s about commit (reservation) vs. actual use.
    – Daniel B
    Commented Jul 11, 2021 at 9:12
  • I especially recommend reading this answer on the linked question. It explains why this is happening in greater detail.
    – Daniel B
    Commented Jul 11, 2021 at 9:15

0

Browse other questions tagged .