1
キャッシュをクリアするための/ 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 …