Troubleshooting ERROR_NOT_ENOUGH_MEMORY

后端 未结 4 973
孤城傲影
孤城傲影 2021-01-03 03:32

Our application is failing on one specific user\'s computer with ERROR_NOT_ENOUGH_MEMORY (\"Not enough storage is available to process this command\").

4条回答
  •  天命终不由人
    2021-01-03 04:23

    A more common cause this error than any of those you've listed is fragmentation of Virtual Memory Space. This a situation where whilst the total free memory is quite reasonable the free space is fragmented with various bits of the virtual memory space being currently allocated. Hence you can get an out of memory error when a request for memory cannot be satisfied by a single contiguous block despite the being enough in total free.

提交回复
热议问题