Why is the computer hogging 22gigs of ram?

-3

Where's all my ram going?

I don't have that many processes running:

enter image description here

However when I look at the performance tab it shows that I'm using 22gigs:

enter image description here

Why is there a huge difference between what the Performance tab is showing and what the Processes tab is showing?

What is taking up so much ram?

l--''''''---------''''''''''''

Posted 2013-07-17T21:36:29.540

Reputation: 713

Question was closed 2013-07-18T06:32:34.173

Answers

1

You don't see Superfetch usage, the marked answer is wrong!

You have a high memory usage you should look at. Please run RAMMap to see the what causes the RAM usage:

Here is a description of what the values mean:

Introduction to the new Sysinternals tool: RAMMap

http://blogs.technet.com/b/askperf/archive/2010/08/13/introduction-to-the-new-sysinternals-tool-rammap.aspx

magicandre1981

Posted 2013-07-17T21:36:29.540

Reputation: 86 560

1

What is taking up so much ram?

Random junk, mostly data that was read from disk and is no longer needed. There's no point in making memory free because there are only two possibilities:

  1. The memory is not used any time soon. In that case, making it free was a waste of effort.

  2. The memory is used soon. In that case, making it free was worse than a waste of effort, it forces the system to do more work to make the memory in use again.

Modern operating systems only make memory free if they have absolutely no other choice. It's more efficient all around to directly transition memory from one use to another without having to go through the extra step of making it free.

Remember, free memory does nothing. It's no better than memory that isn't in your system at all. Only memory that is being used provides any benefit.

If you're thinking "I want memory free so I can use it later", that makes no sense. You can use it now and use it later too. There's no need to compromise.

David Schwartz

Posted 2013-07-17T21:36:29.540

Reputation: 58 310