Linux 释放cached内存

使用free -m 查看系统使用的内存情况:

# free -m
             total      used      free      shared      buffers      
-/+ buffers/cache: 1629   6242
Swap:     8191     16       8175

可以看到cached部分的内存占用量高达5G,这部分内存是可以手工释放的,方法如下:

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

注意:在释放cached内存之前请用sync命令将文件系统buffer里面的数据flush到磁盘上

释放之后使用free -m 查看结果如下:

total      used      free      shared      buffers      
-/+ buffers/cache: 1325    6546
Swap:     8191      16       8175

上一篇:手工释放linux内存------/proc/sys/vm/drop_cache


下一篇:pytest框架-介绍、Mark(打标签)、命令运行用例、用例执行顺序、