Memory is complicated #20
Replies: 4 comments 2 replies
-
|
Very interesting article! Thanks |
Beta Was this translation helpful? Give feedback.
-
|
It is even more complicated. See https://aloiskraus.wordpress.com/2016/10/03/windows-10-memory-compression-and-more what else is making Task Manager unreliable if you are searching for memory leaks. |
Beta Was this translation helpful? Give feedback.
-
|
Hello! You are talking about the fact, that reading from memory allocates physical memory. In your example, you are actually writing to memory. Does reading only (without writing) also allocate physical memory? |
Beta Was this translation helpful? Give feedback.
-
|
Here is a PowerShell script: Get-Process -Name notepad | |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Memory is complicated
This is a small story about how memory operates in your .NET application. Well not only .NET but how memory does or does not get allocated.
We will see how a 1 Gigabyte big array is only a few megabytes big to some extend. Furthermore I will discuss working set and committed memory.
https://steven-giesel.com/blogPost/fee60a27-b1c4-491d-a2f1-3371db73ffac
Beta Was this translation helpful? Give feedback.
All reactions