<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic cache memory in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/cache-memory/m-p/3509571#M16791</link>
    <description>Dear All&lt;BR /&gt;i hae Redhat 9 Linux server runs Oracle9i database and Radius service, on the system i upgrade my memory from 1GB to 4GB,but the free memory after the uppgrade is the same as before almost 10GB, i see that the catched memory is big 3.5GB, so for what this cache and how to reduce this value.&lt;BR /&gt;BR</description>
    <pubDate>Tue, 22 Mar 2005 10:28:18 GMT</pubDate>
    <dc:creator>Fadia Almarei</dc:creator>
    <dc:date>2005-03-22T10:28:18Z</dc:date>
    <item>
      <title>cache memory</title>
      <link>https://community.hpe.com/t5/operating-system-linux/cache-memory/m-p/3509571#M16791</link>
      <description>Dear All&lt;BR /&gt;i hae Redhat 9 Linux server runs Oracle9i database and Radius service, on the system i upgrade my memory from 1GB to 4GB,but the free memory after the uppgrade is the same as before almost 10GB, i see that the catched memory is big 3.5GB, so for what this cache and how to reduce this value.&lt;BR /&gt;BR</description>
      <pubDate>Tue, 22 Mar 2005 10:28:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/cache-memory/m-p/3509571#M16791</guid>
      <dc:creator>Fadia Almarei</dc:creator>
      <dc:date>2005-03-22T10:28:18Z</dc:date>
    </item>
    <item>
      <title>Re: cache memory</title>
      <link>https://community.hpe.com/t5/operating-system-linux/cache-memory/m-p/3509572#M16792</link>
      <description>the short answer - it's OK; kernel uses all RAM for buffering/caching.&lt;BR /&gt;&lt;BR /&gt;"Understanding Virtual Memory" [&lt;A href="http://www.redhat.com/magazine/001nov04/features/vm/]" target="_blank"&gt;http://www.redhat.com/magazine/001nov04/features/vm/]&lt;/A&gt; article from RH Magazine may be a good start point for learning Virtual Memory Management in linux kernel. &lt;BR /&gt;&lt;BR /&gt;"Linux Memory Management or 'Why is there no free RAM?"  [&lt;A href="http://forums.gentoo.org/viewtopic.php?t=175419]" target="_blank"&gt;http://forums.gentoo.org/viewtopic.php?t=175419]&lt;/A&gt; provides VM in linux overview and answers the famous question " 'Why is there no free RAM?"</description>
      <pubDate>Tue, 22 Mar 2005 10:38:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/cache-memory/m-p/3509572#M16792</guid>
      <dc:creator>Vitaly Karasik_1</dc:creator>
      <dc:date>2005-03-22T10:38:03Z</dc:date>
    </item>
    <item>
      <title>Re: cache memory</title>
      <link>https://community.hpe.com/t5/operating-system-linux/cache-memory/m-p/3509573#M16793</link>
      <description>Dear Viaty&lt;BR /&gt;how can i reduce the valuse of this catch and will this affect the applications run</description>
      <pubDate>Wed, 23 Mar 2005 03:19:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/cache-memory/m-p/3509573#M16793</guid>
      <dc:creator>Fadia Almarei</dc:creator>
      <dc:date>2005-03-23T03:19:31Z</dc:date>
    </item>
    <item>
      <title>Re: cache memory</title>
      <link>https://community.hpe.com/t5/operating-system-linux/cache-memory/m-p/3509574#M16794</link>
      <description>In general, you should not tuning virtual memory  behaviour - the default policy is good for 99% systems.&lt;BR /&gt;&lt;BR /&gt;You shouldn't see any problem with your applications performance because kernel *releases* its buffer/cache when  applications need memory.</description>
      <pubDate>Wed, 23 Mar 2005 05:00:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/cache-memory/m-p/3509574#M16794</guid>
      <dc:creator>Vitaly Karasik_1</dc:creator>
      <dc:date>2005-03-23T05:00:40Z</dc:date>
    </item>
    <item>
      <title>Re: cache memory</title>
      <link>https://community.hpe.com/t5/operating-system-linux/cache-memory/m-p/3509575#M16795</link>
      <description>When looking at memory usage, focus on the line  "-/+ buffers/cache:" from the output of the free -tm command:&lt;BR /&gt;&lt;BR /&gt;$ free -tm&lt;BR /&gt;             total       used       free     shared    buffers     cached&lt;BR /&gt;Mem:           124        113         10          0          2         42&lt;BR /&gt;-/+ buffers/cache:         68         55&lt;BR /&gt;Swap:          382        124        257&lt;BR /&gt;Total:         506        238        267&lt;BR /&gt;&lt;BR /&gt;-&amp;gt; The actual free memory available is 55MB (in this case).  44 MB of theses 55MB are used for the moment by kernel for buffers and cached data, but if you run more proceses they will be released automatically.&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Alex</description>
      <pubDate>Fri, 25 Mar 2005 09:31:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/cache-memory/m-p/3509575#M16795</guid>
      <dc:creator>Alexandre Dumont_1</dc:creator>
      <dc:date>2005-03-25T09:31:20Z</dc:date>
    </item>
    <item>
      <title>Re: cache memory</title>
      <link>https://community.hpe.com/t5/operating-system-linux/cache-memory/m-p/3509576#M16796</link>
      <description>I picked up these tips a while back from a fellow Linux Admin - suggestions he has used to dampen the effects of the Linux demand for buffering.  &lt;BR /&gt;&lt;BR /&gt;# inactive_clean_percent default 30. Changed to 60 to free up dirty page faster.&lt;BR /&gt;vm.inactive_clean_percent=60&lt;BR /&gt;&lt;BR /&gt;# pagecache default 1 15 30. Use less memory for data cache.&lt;BR /&gt;vm.pagecache = 1 5 10&lt;BR /&gt;</description>
      <pubDate>Fri, 25 Mar 2005 12:13:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/cache-memory/m-p/3509576#M16796</guid>
      <dc:creator>TwoProc</dc:creator>
      <dc:date>2005-03-25T12:13:45Z</dc:date>
    </item>
  </channel>
</rss>

