<?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 Re: Cache Memory in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/cache-memory/m-p/5043864#M48472</link>
    <description>Extrange question. You don't need to clear the cache/buffer as the OS handles this for you when memory is needed for applications.</description>
    <pubDate>Thu, 03 May 2007 09:25:12 GMT</pubDate>
    <dc:creator>Ivan Ferreira</dc:creator>
    <dc:date>2007-05-03T09:25:12Z</dc:date>
    <item>
      <title>Cache Memory</title>
      <link>https://community.hpe.com/t5/operating-system-linux/cache-memory/m-p/5043860#M48468</link>
      <description>Hi All,&lt;BR /&gt;&lt;BR /&gt;Want to know how to clear the RAM Cache memory in Linux.&lt;BR /&gt;&lt;BR /&gt;Thanks &amp;amp; Regards</description>
      <pubDate>Wed, 02 May 2007 08:23:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/cache-memory/m-p/5043860#M48468</guid>
      <dc:creator>Raju_S</dc:creator>
      <dc:date>2007-05-02T08:23:36Z</dc:date>
    </item>
    <item>
      <title>Re: Cache Memory</title>
      <link>https://community.hpe.com/t5/operating-system-linux/cache-memory/m-p/5043861#M48469</link>
      <description>Shalom,&lt;BR /&gt;&lt;BR /&gt;reboot.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Wed, 02 May 2007 08:46:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/cache-memory/m-p/5043861#M48469</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2007-05-02T08:46:23Z</dc:date>
    </item>
    <item>
      <title>Re: Cache Memory</title>
      <link>https://community.hpe.com/t5/operating-system-linux/cache-memory/m-p/5043862#M48470</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Next to rebooting your machine, I don't think there's a way ;-)&lt;BR /&gt;&lt;BR /&gt;The OS releases cache memory when more memory is needed by your processes, though, so there should be no need to worry.&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;Wout</description>
      <pubDate>Wed, 02 May 2007 08:49:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/cache-memory/m-p/5043862#M48470</guid>
      <dc:creator>Wouter Jagers</dc:creator>
      <dc:date>2007-05-02T08:49:41Z</dc:date>
    </item>
    <item>
      <title>Re: Cache Memory</title>
      <link>https://community.hpe.com/t5/operating-system-linux/cache-memory/m-p/5043863#M48471</link>
      <description>Would like to know why you want to clear cache ? Are you getting any cache error messages ?  Does your system support hotswapable memory ? &lt;BR /&gt;  &lt;BR /&gt;</description>
      <pubDate>Thu, 03 May 2007 08:32:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/cache-memory/m-p/5043863#M48471</guid>
      <dc:creator>Tobu</dc:creator>
      <dc:date>2007-05-03T08:32:14Z</dc:date>
    </item>
    <item>
      <title>Re: Cache Memory</title>
      <link>https://community.hpe.com/t5/operating-system-linux/cache-memory/m-p/5043864#M48472</link>
      <description>Extrange question. You don't need to clear the cache/buffer as the OS handles this for you when memory is needed for applications.</description>
      <pubDate>Thu, 03 May 2007 09:25:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/cache-memory/m-p/5043864#M48472</guid>
      <dc:creator>Ivan Ferreira</dc:creator>
      <dc:date>2007-05-03T09:25:12Z</dc:date>
    </item>
    <item>
      <title>Re: Cache Memory</title>
      <link>https://community.hpe.com/t5/operating-system-linux/cache-memory/m-p/5043865#M48473</link>
      <description>You probably don't really want to do that.  But here is a script that will tend to clear out page cache.  It fills the cache with the contents of a sparse file which is then removed.&lt;BR /&gt;&lt;BR /&gt;#!/bin/sh&lt;BR /&gt;# Empty the file system cache.&lt;BR /&gt;# Use reading a sparse file to fill the cache with pages from the file.&lt;BR /&gt;# Then remove the file to release the pages from cache.&lt;BR /&gt;&lt;BR /&gt;MemTotal=$(awk '/MemTotal/{print $2}' /proc/meminfo)&lt;BR /&gt;dd if=/dev/zero of=/tmp/sparsefile bs=1K count=1 seek=$MemTotal&lt;BR /&gt;dd if=/tmp/sparsefile of=/dev/null bs=1M&lt;BR /&gt;rm /tmp/sparsefile&lt;BR /&gt;</description>
      <pubDate>Thu, 03 May 2007 18:25:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/cache-memory/m-p/5043865#M48473</guid>
      <dc:creator>Mike Stroyan</dc:creator>
      <dc:date>2007-05-03T18:25:26Z</dc:date>
    </item>
    <item>
      <title>Re: Cache Memory</title>
      <link>https://community.hpe.com/t5/operating-system-linux/cache-memory/m-p/5043866#M48474</link>
      <description>Hi All,&lt;BR /&gt;&lt;BR /&gt;Thanks for your response.&lt;BR /&gt;&lt;BR /&gt;Regards</description>
      <pubDate>Wed, 09 May 2007 01:15:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/cache-memory/m-p/5043866#M48474</guid>
      <dc:creator>Raju_S</dc:creator>
      <dc:date>2007-05-09T01:15:10Z</dc:date>
    </item>
  </channel>
</rss>

