Linux cache释放
Posted 浮華落盡
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux cache释放相关的知识,希望对你有一定的参考价值。
cache释放:
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
说明,释放前最好sync一下,防止丢数据。
附:
linux cache内存释放bash 脚本
#! /bin/sh freemem=$(cat /proc/meminfo | grep "MemFree" | awk ‘{print $2}‘) if [ $freemem -le 40 ] then date >> /var/log/mem.log free -m >> /var/log/mem.log sync sync echo 3 > /proc/sys/vm/drop_caches free -m >> /var/log/mem.log fi
以上是关于Linux cache释放的主要内容,如果未能解决你的问题,请参考以下文章