针对程序异常终端,缓存中数据并未同步到磁盘上,需要先调用sync同步数据到磁盘,在清空drop_caches缓存。
在清空缓存之前使用sync命令同步数据到磁盘
# cat /proc/sys/vm/drop_caches
默认是0,1表示清空页缓存,2表示清空inode和目录树缓存,3清空所有的缓存
#sync
#free -m
total used free shared buffers cached
Mem: 23953 4741 19211 0 967 2129
-/+ buffers/cache: 1644 22308
Swap: 12047 0 12047
#echo 3 > /proc/sys/vm/drop_caches
#free -m //会发现缓存明细减少
total used free shared buffers cached
Mem: 23953 735 23218 0 3 74
-/+ buffers/cache: 656 23296
Swap: 12047 0 12047
原创文章,作者:3628473679,如若转载,请注明出处:https://blog.ytso.com/192460.html