Linux free 命令中buffer和cache 都是页缓存(page cache),可以手动清理清理,降低内存消耗。

清理前free命令查看

guobin@guobin-VirtualBox:~/work$ free -m
                    total        used        free      shared  buff/cache   available
Mem:           1496         923         106          25         466         401
Swap:          1472         293        1178

执行清理命令

sudo sh -c "echo 3 > /proc/sys/vm/drop_caches"

清理执行后

guobin@guobin-VirtualBox:~/work$ free -m
                     total        used        free      shared  buff/cache   available
Mem:           1496         923         365          25         207         408
Swap:          1472         293        1178
 

Logo

更多推荐