캐시를 지우려면 /proc/sys/vm/drop_caches를 설정하세요.

캐시를 지우려면 /proc/sys/vm/drop_caches를 설정하세요.

콜드 캐시 타이밍 작업의 일환으로 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

페이지 캐시, 디렉터리 항목 및 inode를 해제합니다. 좋아요

그렇다면 시스템이 캐시를 다시 정상적으로 시작하도록 하려면 먼저 캐시를 0으로 재설정해야 합니까? 내 시스템은 현재 값을 0으로 설정하는데, 이것이 기본값이라고 생각합니다. 아니면 저절로 재설정되나요? 여기에는 적어도 두 가지 가능성이 있지만 어느 것이 올바른지 확실하지 않습니다.

  1. echo 3 > /proc/sys/vm/drop_caches페이지 캐시, 디렉터리 항목 및 inode를 해제합니다. 그런 다음 시스템은 즉시 캐싱을 다시 시작합니다. /proc/sys/vm/drop_caches이 경우 기대값이 어떻게 될지 잘 모르겠습니다. 거의 즉시 0으로 돌아가나요?

  2. 3으로 설정 하면 /proc/sys/vm/drop_caches시스템은 0으로 재설정될 때까지 메모리 캐싱을 수행하지 않습니다.

어떤 경우가 사실인가요?

답변1

고정적이지 않습니다. 파일에 쓰기만 하면 캐시가 삭제되고 즉시 캐시가 다시 시작됩니다.

기본적으로 해당 파일에 쓸 때 실제로 설정을 변경하는 것이 아니라 커널에 명령을 내리는 것입니다. 커널은 캐시를 삭제하여 명령을 따르고 이전과 같이 실행을 계속합니다.

답변2

위에서 말한 것처럼 끈적이지는 않습니다. 다음 명령을 사용하여 정리할 수도 있습니다(설명서에 언급된 "동기화"와 함께).

sudo sh -c "sync; echo 3 > /proc/sys/vm/drop_caches"

관련 정보