手动释放linux的缓存
时间:2014-06-28 10:41:39
收藏:0
阅读:222
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.
评论(0)