欢迎访问 生活随笔!

生活随笔

当前位置: 首页 > 运维知识 > linux >内容正文

linux

清理linux内存cache

发布时间:2025/3/21 linux 64 豆豆
生活随笔 收集整理的这篇文章主要介绍了 清理linux内存cache 小编觉得挺不错的,现在分享给大家,帮大家做个参考.
清理linux内存cache

在使用grep从很多文件中搜索特定数据串的时候,发现内存使用迅速提高,主要是cache的使用占用了相当多的内存。在使用下面命令的时候忽视了文件的数量和文件大小,导致cache突增。
  • # grep -e "dst_string" ./*
  • 大家在使用shell编程的时候一定要注意通配符的使用,这里尤其提醒大家就是星号(*)的使用,星号固然方便,但要适度使用。 这里主要还是记录如何手动清理linux内存cache,因为上面的操作使用的大量的cache。 1、使用free查看一下当前内存使用情况:
  • # free
  •              total used free shared buffers cached
  • Mem: 16621896 8967952 7653944 0 212352 8377276
  • -/+ buffers/cache: 378324 16243572
  • Swap: 10241428 0 10241428
  • 2、执行sync同步数据
  • # sync
  • 该命令将未写的系统缓冲区写到磁盘中。包含已修改的 i-node、已延迟的块 I/O 和读写映射文件。 3、清理cache
  • # echo 3 > /proc/sys/vm/drop_caches
  • # free
  •              total used free shared buffers cached
  • Mem: 16621896 579592 16042304 0 268 308708
  • -/+ buffers/cache: 270616 16351280
  • 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_caches
  • To free dentries and inodes:
  • * echo 2 > /proc/sys/vm/drop_caches
  • To free pagecache, dentries and inodes:
  • * echo 3 > /proc/sys/vm/drop_caches
  • As 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.

  • 原文地址:http://blog.chinaunix.net/uid-25505925-id-180921.html

    总结

    以上是生活随笔为你收集整理的清理linux内存cache的全部内容,希望文章能够帮你解决所遇到的问题。

    如果觉得生活随笔网站内容还不错,欢迎将生活随笔推荐给好友。