¸®´ª½º¿¡¼ ij½¬¸Þ¸ð¸®¸¦ Áö¿ì°í ½ÍÀºµ¥ ¾î¶»°Ô ÇؾßÇϳª¿ä?
ÀÎÅͳݰ˻öÇغ¸´Ï
Drop Caches
Kernels 2.6.16 and newer provide a mechanism to have the kernel drop the page cache and/or inode and dentry caches on command, which can help free up a lot of memory. Now you can throw away that script that allocated a ton of memory just to get rid of the cache...
To use /proc/sys/vm/drop_caches, just echo a number to it.
To free pagecache:
# echo 1 > /proc/sys/vm/drop_caches
To free dentries and inodes:
# echo 2 > /proc/sys/vm/drop_caches
To free pagecache, dentries and inodes:
echo 3 > /proc/sys/vm/drop_caches
As this is a non-destructive operation and dirty objects are not freeable, the user should run "sync" first!
ÀÌ·±¾Ö±â´Â Àִµ¥ Àß ¾ÈµÇ³×¿ä....
¸®´ª½º ¹öÀüÀº CentOS 4.5
Ä¿³Î¹öÀüÀº 2.6.9-55
Áö¿øÇÏ´Â Ä¿³ÎÀº Kernels 2.6.16 and newer
ÃֽŠĿ³Î·Î ¾÷±×·¹À̵åÇϼ¼¿ä.
¸Þ¸ð¸®¿¡ filesystem buffer ij½ÌµÈ°Å¸é sync ¸í·É¾²¸é µË´Ï´Ù.
ÀÏ´Ü ±â´ÉÀ¸·Î ³ª¿ÍÀÖ±â´ÂÇϳª 2.6.23 Ä¿³Î¿¡¼ ÆÄÀÏ ½Ã½ºÅÛ¿¡ ¿©·¯¹ø ¹®Á¦°¡ µÈÀûÀÌ ÀÖ½À´Ï´Ù.
Á¦°¡ ã¾Æº» ±Û¿¡ ÀÇÇÏ¸é °³¹ß¿ëÀ¸·Î »ç¿ëÇÒ ¼ö ÀÖÁö¸¸ ¿î¿µ¿ëÀ¸·Î´Â ÀûÇÕÇÏÁö ¾Ê´Ù´Â ÆÇ´ÜÀÌ µì´Ï´Ù.
Âü°í Çϼ¼¿ä. ;