/proc/sys/vm/drop_caches用法说明

来源:互联网 发布:最新淘宝客网站程序 编辑:程序博客网 时间:2024/06/10 02:28

/proc/sys/vm/drop_caches (since Linux 2.6.16)


Writing to this file causes the kernel to drop clean caches, dentries and inodes from memory, causing that memory to become free.


To free pagecache, use echo 1 > /proc/sys/vm/drop_caches


to free dentries and inodes, use echo 2 > /proc/sys/vm/drop_caches


to free pagecache, dentries and inodes, use echo 3 > /proc/sys/vm/drop_caches.


Because this is a non-destructive operation and dirty objects are not freeable, the user should run sync first.
原创粉丝点击