Click here to Skip to main content
15,886,919 members

Welcome to the Lounge

   

For discussing anything related to a software developer's life but is not for programming questions. Got a programming question?

The Lounge is rated Safe For Work. If you're about to post something inappropriate for a shared office environment, then don't post it. No ads, no abuse, and no programming questions. Trolling, (political, climate, religious or whatever) will result in your account being removed.

 
GeneralRe: Utilization Pin
jschell7-Sep-23 5:19
jschell7-Sep-23 5:19 
GeneralRe: Utilization Pin
honey the codewitch7-Sep-23 5:47
mvahoney the codewitch7-Sep-23 5:47 
GeneralRe: Utilization Pin
Gary Wheeler7-Sep-23 6:04
Gary Wheeler7-Sep-23 6:04 
GeneralRe: Utilization Pin
honey the codewitch7-Sep-23 6:22
mvahoney the codewitch7-Sep-23 6:22 
GeneralRe: Utilization Pin
Gary Wheeler7-Sep-23 6:31
Gary Wheeler7-Sep-23 6:31 
GeneralRe: Utilization Pin
honey the codewitch7-Sep-23 6:32
mvahoney the codewitch7-Sep-23 6:32 
GeneralRe: Utilization Pin
jochance8-Sep-23 4:56
jochance8-Sep-23 4:56 
GeneralRe: Utilization Pin
David On Life8-Sep-23 8:32
David On Life8-Sep-23 8:32 
That's generally correct. My system shows 5 GB available RAM right now; however, the majority of that should be freed pages which point to disk files (including application code) so that if the file (application) is (re)opened, it doesn't need to be read from disk. A small portion (128MB) is zeroed pages, just enough that when an application asks for a blank memory page it can be delivered instantly without waiting to zero it.

Windows also has a mechanism for pre-loading pages it expects to need shortly (mostly used during boot which is more predictable) and .NET has similar mechanisms for pre-loading code before it's needed (although it typically requires running optimization tooling to build the pre-loading list, which major apps like VS do but many don't).

There's a number of other apps that have 'fast load' setups to pre-load the memory their application uses; however, I often find them annoying as they may pre-load their application even though I have no intention of using it that day...

GeneralRe: Utilization Pin
trønderen7-Sep-23 6:59
trønderen7-Sep-23 6:59 
GeneralRe: Utilization Pin
honey the codewitch7-Sep-23 7:10
mvahoney the codewitch7-Sep-23 7:10 
GeneralRe: Utilization Pin
dandy727-Sep-23 7:02
dandy727-Sep-23 7:02 
GeneralRe: Utilization Pin
honey the codewitch7-Sep-23 7:06
mvahoney the codewitch7-Sep-23 7:06 
GeneralRe: Utilization Pin
dandy727-Sep-23 7:20
dandy727-Sep-23 7:20 
GeneralRe: Utilization Pin
honey the codewitch7-Sep-23 7:25
mvahoney the codewitch7-Sep-23 7:25 
GeneralRe: Utilization Pin
dandy727-Sep-23 7:29
dandy727-Sep-23 7:29 
GeneralRe: Utilization Pin
Marc Clifton7-Sep-23 7:54
mvaMarc Clifton7-Sep-23 7:54 
GeneralRe: Utilization Pin
obermd7-Sep-23 8:40
obermd7-Sep-23 8:40 
GeneralRe: Utilization Pin
honey the codewitch7-Sep-23 9:18
mvahoney the codewitch7-Sep-23 9:18 
GeneralRe: Utilization Pin
wapiti648-Sep-23 5:56
wapiti648-Sep-23 5:56 
GeneralRe: Utilization Pin
honey the codewitch8-Sep-23 5:57
mvahoney the codewitch8-Sep-23 5:57 
GeneralRe: Utilization Pin
wapiti648-Sep-23 6:28
wapiti648-Sep-23 6:28 
GeneralRe: Utilization Pin
honey the codewitch8-Sep-23 7:01
mvahoney the codewitch8-Sep-23 7:01 
GeneralRe: Utilization Pin
trønderen8-Sep-23 8:22
trønderen8-Sep-23 8:22 
GeneralRe: Utilization Pin
honey the codewitch8-Sep-23 11:05
mvahoney the codewitch8-Sep-23 11:05 
GeneralRe: Utilization Pin
trønderen7-Sep-23 11:49
trønderen7-Sep-23 11:49 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.