Là một phần của việc thực hiện một số thời gian bộ đệm lạnh, tôi đang cố gắng giải phóng bộ đệm của hệ điều hành. Các tài liệu hạt nhân (lấy tháng 1 năm 2019) cho biết:
drop_caches
Writing to this will cause the kernel to drop clean caches, as well as
reclaimable slab objects like dentries and inodes. Once dropped, their
memory becomes free.
To free pagecache:
echo 1 > /proc/sys/vm/drop_caches
To free reclaimable slab objects (includes dentries and inodes):
echo 2 > /proc/sys/vm/drop_caches
To free slab objects and pagecache:
echo 3 > /proc/sys/vm/drop_caches
This is a non-destructive operation and will not free any dirty objects.
To increase the number of objects freed by this operation, the user may run
`sync' prior to writing to /proc/sys/vm/drop_caches. This will minimize the
number of dirty objects on the system and create more candidates to be
dropped.
This file is not a means to control the growth of the various kernel caches
(inodes, dentries, pagecache, etc...) These objects are automatically
reclaimed by the kernel when memory is needed elsewhere on the system.
Use of this file can cause performance problems. Since it discards cached
objects, it may cost a significant amount of I/O and CPU to recreate the
dropped objects, especially if they were under heavy use. Because of this,
use outside of a testing or debugging environment is not recommended.
You may see informational messages in your kernel log when this file is
used:
cat (1234): drop_caches: 3
These are informational only. They do not mean that anything is wrong
with your system. To disable them, echo 4 (bit 3) into drop_caches.
Tôi hơi sơ sài về các chi tiết. Đang chạy
echo 3 > /proc/sys/vm/drop_caches
giải phóng pagecache, răng và inodes. Đồng ý.
Vì vậy, nếu tôi muốn hệ thống bắt đầu lưu lại bộ đệm một cách bình thường, tôi có cần đặt lại về 0 trước không? Hệ thống của tôi có giá trị hiện được đặt thành 0, mà tôi giả sử là mặc định. Hay nó sẽ tự thiết lập lại? Tôi thấy ít nhất hai khả năng ở đây và tôi không chắc cái nào đúng:
echo 3 > /proc/sys/vm/drop_caches
giải phóng pagecache, răng và inodes. Hệ thống sau đó ngay lập tức bắt đầu lưu lại bộ nhớ cache. Tôi không chắc chắn những gì tôi mong đợi giá trị/proc/sys/vm/drop_caches
sẽ làm nếu đây là trường hợp. Quay trở về 0 gần như ngay lập tức?Nếu
/proc/sys/vm/drop_caches
được đặt thành 3, hệ thống sẽ không thực hiện bất kỳ bộ nhớ đệm nào cho đến khi được đặt lại về 0.
Trường hợp nào là đúng?
sudo -i && echo 3 > /proc/sys/vm/drop_caches
, tôi gặp lỗi : stdin: is not a tty
. Sử dụng phương pháp "sudo" của bạn hoạt động. Tại sao?
echo 3 | sudo tee /proc/sys/vm/drop_caches