Clear the memory cache of the linux system

View the current system status:

free -h
              total        used        free      shared  buff/cache   available
Mem:           15Gi       3.2Gi       4.1Gi       8.0Mi       8.0Gi        11Gi
Swap:            0B          0B          0B

 

First, let's explain the content of the output:

Mem 行(第二行):是内存的使用情况。
Swap 行(第三行):是交换空间的使用情况。

total: 列显示系统总的可用物理内存和交换空间大小。
used: 列显示已经被使用的物理内存和交换空间。
free: 列显示还有多少物理内存和交换空间可用使用。
shared: 列显示被共享使用的物理内存大小。
buff/cache: 列显示被 buffer 和 cache 使用的物理内存大小。
available: 列显示还可以被应用程序使用的物理内存大小。

 

2. The coarse cache in the linux server is too high, resulting in slow operation

Execute the following command to clear the cache:

echo 1 > /proc/sys/vm/drop_caches

Of course, the values ​​that can be set in this file are 1, 2, and 3 respectively.

echo 1 > /proc/sys/vm/drop_caches
echo 2 > /proc/sys/vm/drop_caches
echo 3 > /proc/sys/vm/drop_caches

它们所表示的含义为:
echo 1 > /proc/sys/vm/drop_caches:表示清除pagecache。 
echo 2 > /proc/sys/vm/drop_caches:表示清除回收slab分配器中的对象(包括目录项缓存和inode缓存)。
                                   slab分配器是内核中管理内存的一种机制,其中很多缓存数据实现都是用的pagecache。 
echo 3 > /proc/sys/vm/drop_caches:表示清除pagecache和slab分配器中的缓存对象。

 

3. Execute the command

free -h
              total        used        free      shared  buff/cache   available
Mem:           15Gi       3.2Gi       4.1Gi       8.0Mi       8.0Gi        11Gi
Swap:            0B          0B          0B

echo 1 > /proc/sys/vm/drop_caches
free -h
              total        used        free      shared  buff/cache   available
Mem:           15Gi       3.2Gi        11Gi       8.0Mi       162Mi        11Gi
Swap:            0B          0B          0B

echo 2 > /proc/sys/vm/drop_caches
free -h
              total        used        free      shared  buff/cache   available
Mem:           15Gi       3.2Gi        12Gi       8.0Mi       144Mi        11Gi
Swap:            0B          0B          0B

echo 3 > /proc/sys/vm/drop_caches
free -h
              total        used        free      shared  buff/cache   available
Mem:           15Gi       3.2Gi        12Gi       8.0Mi       144Mi        11Gi
Swap:            0B          0B          0B

 

おすすめ

転載: blog.csdn.net/summer_fish/article/details/127843793
おすすめ