清理linux內存cache

     在使用grep從很多文件中搜索特定數據串的時候,發現內存使用迅速提高,主要是cache的使用佔用了相當多的內存。在使用下面命令的時候忽視了文件的數量和文件大小,導致cache突增。

 

  1. # grep -"dst_string" ./*

     大家在使用shell編程的時候一定要注意通配符的使用,這裏尤其提醒大家就是星號(*)的使用,星號固然方便,但要適度使用。

 

      這裏主要還是記錄如何手動清理linux內存cache,因爲上面的操作使用的大量的cache。

 

1、使用free查看一下當前內存使用情況:

 

  1. # free

  2.              total used free shared buffers cached

  3. Mem: 16621896 8967952 7653944 0 212352 8377276

  4. -/+ buffers/cache: 378324 16243572

  5. Swap: 10241428 0 10241428

2、執行sync同步數據

 

  1. # sync

      該命令將未寫的系統緩衝區寫到磁盤中。包含已修改的 i-node、已延遲的塊 I/O 和讀寫映射文件。

 

3、清理cache

 

  1. # echo 3 > /proc/sys/vm/drop_caches 

  2. # free

  3.              total used free shared buffers cached

  4. Mem: 16621896 579592 16042304 0 268 308708

  5. -/+ buffers/cache: 270616 16351280

  6. Swap: 10241428 0 10241428

4、對比一下加粗部分就清楚了,cache被清理掉了。

 

參考資料:

http://www.linuxidc.com/Linux/2010-03/24939.htm

http://han19838383.blog.163.com/blog/static/54316486201101032825333/

 

5、drop_cache的詳細文檔如下,以便查閱(摘自:http://www.linuxidc.com/Linux/2010-03/24939.htm

 

Writing to this will cause the kernel to drop clean caches, dentries and inodes from memory, causing that memory to become free.To free pagecache:* echo 1 > /proc/sys/vm/drop_cachesTo free dentries and inodes:* echo 2 > /proc/sys/vm/drop_cachesTo free pagecache, dentries and inodes:* echo 3 > /proc/sys/vm/drop_cachesAs this is a non-destructive operation, and dirty objects are notfreeable, the user should run "sync" first in order to make sure allcached objects are freed.This tunable was added in 2.6.16.


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章