Blogroll
Recent Comments
- DiademTech on Zimbra View mail disable
- ghantoos on Zimbra View mail disable
- daniel on Linux Cache Thrashed
- Rodrigo on Zimbra View mail disable
- shawnmichle on Is chkrootkit the best ?
WP Cumulus Flash tag cloud by Roy Tanck and Luke Morton requires Flash Player 9 or better.
Where is Sachin now?
And you coming from:
My Flickr
Currently Reading:
Me and Twitter.
- After so long, This time i do like Windows 7. 2010-06-13
- Brain Sync is plain awesome. After listening to Secret I slept like a baby all night. 2010-06-04
- @ejacqui Happy friday dude. in reply to ejacqui 2010-05-14
- More updates...
Linux Cache Thrashed
Published by sac | Filed under Linux
Recently I came across an application in my workplace which is still under test phrase thrashing cache on RedHat linux servers badly. If this application would run for an hour+ the Server would start slowing down and the only way out was restart the linux server.
Then I came across this:
drop_caches
Writing to this will cause the kernel to drop clean caches, dentries and inodes from memory, causing that memory to become free.
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 in order to make sure all cached objects are freed.
This tunable was added in 2.6.16.
Source: Linuxinsight
Source: Cyberciti.biz



June 3rd, 2010 at 9:39 am
Cool, i was looking for this thanks.