콜드 캐시 타이밍을 수행하는 동안 OS 캐시를 비우려고합니다. (2019 1월 검색) 커널 문서는 말합니다 :
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.
세부 사항에 대해 조금 스케치합니다. 달리는
echo 3 > /proc/sys/vm/drop_caches
pagecache, dentries 및 inode를 해제합니다. 승인.
따라서 시스템이 정상적으로 캐싱을 시작하도록하려면 먼저 0으로 재설정해야합니까? 내 시스템의 값이 현재 0으로 설정되어 있으며 이것이 기본값입니다. 아니면 자체적으로 재설정됩니까? 나는 적어도 두 가지 가능성을 보았으며 어느 것이 사실인지 확실하지 않습니다.
echo 3 > /proc/sys/vm/drop_caches
pagecache, dentries 및 inode를 해제합니다. 그런 다음 시스템은 즉시 다시 캐싱을 시작합니다./proc/sys/vm/drop_caches
이 경우 가치가 어떻게 될지 잘 모르겠습니다 . 거의 즉시 0으로 돌아 갑니까?경우
/proc/sys/vm/drop_caches
3으로 설정이 0으로 재설정 될 때까지, 시스템은 메모리 캐싱을하지 않습니다.
어느 경우에 해당됩니까?
이런 젠장! @VolkerSiegel 나는 몇 시간 동안 웹을 문지르고 무작위로 귀하의 의견을 찾았습니다. 그것을 시도하고 완벽하게 작동했습니다! 이 작은 트릭을 추가해 주셔서 감사합니다. 이 질문을 도용하고 싶지 않지만 부적절하지 않은 경우 설명을 요청하고 싶습니다. 와 함께 sshpass를 사용
—
harperville
sudo -i && echo 3 > /proc/sys/vm/drop_caches
하면 오류가 발생 stdin: is not a tty
합니다. "스도"방법을 사용하면 작동합니다. 왜?
@harperville 질문하십시오; 이것은 거의 확실히 관련이없는 문제입니다.
—
Faheem Mitha
@ harperville 네-아주 좋은 질문입니다-흥미로운 답변이 있으니 따로 문의하십시오! 그런 다음 여기에 알려주십시오. 아니면 내가 직접 질문 한 다음 답변을 원하십니까?
—
Volker Siegel
echo 3 | sudo tee /proc/sys/vm/drop_caches