重慶思莊技術(shù)分享——Linux 清空緩存命令
Linux 清空緩存命令
某些時候需要把linux 的緩存清理一下。使用時需要區(qū)分參數(shù)的不同
0:不做任何處理,由系統(tǒng)自己管理
1清空pagecache
2清空dentries和inodes
3 清空pagecache、dentries和inodes
# 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
標簽: