How to clear or drop the cache buffer pages from Linux memory
7:55 PM
Cache in Linux memory is where the Kernel stores the information it
may need later, as memory is incredible faster than disk, it is great
that the Linux Kernel takes care about that.
Anyway you can also manipulate how the cache behaves, there usually no need to do that, as Linux Operating system is very efficient in managing your computer memory, and will automatically free the RAM and drop the cache if some application needs memory.
Let's see how to force Linux to drop the cache from memory.
0 -> Will give the Kernel full control to the cache memory
1 -> Will free the page cache
2 -> Will free dentries and inodes
3 -> Will free dentries and inodes as well as page cache
So, just enter those values to the file /proc/sys/vm/drop_caches, with echo, and as root:
or
or
or
Anyway you can also manipulate how the cache behaves, there usually no need to do that, as Linux Operating system is very efficient in managing your computer memory, and will automatically free the RAM and drop the cache if some application needs memory.
Let's see how to force Linux to drop the cache from memory.
Drop_caches
Since Kernel 2.6.16, you can control how cache behaves, there are four possible "positions" for the switch.0 -> Will give the Kernel full control to the cache memory
1 -> Will free the page cache
2 -> Will free dentries and inodes
3 -> Will free dentries and inodes as well as page cache
So, just enter those values to the file /proc/sys/vm/drop_caches, with echo, and as root:
sync; echo 0 > /proc/sys/vm/drop_caches |
or
sync; echo 1 > /proc/sys/vm/drop_caches |
or
sync; echo 2 > /proc/sys/vm/drop_caches |
or
sync; echo
3
> /proc/sys/vm/drop_caches
0 comments