码迷,mamicode.com
首页 > 系统相关 > 详细

Linux人工清理内存cache

时间:2018-06-21 22:24:27      阅读:227      评论:0      收藏:0      [点我收藏+]

标签:内存   using   file   objects   ble   node   IV   and   tin   

  内存缓存的出现是解决,设备之间的读写速度的差异!

00、linux缓存解释

/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

sync   //fist act!!!
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.

Linux人工清理内存cache

标签:内存   using   file   objects   ble   node   IV   and   tin   

原文地址:https://www.cnblogs.com/xiaochina/p/9210869.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!