Sign in
apache
/
cloudstack
/
refs/heads/CheckVolumeAPI
/
.
/
systemvm
/
debian
/
etc
/
cron.hourly
/
clear_cache
blob: 5daa16744d0eedf93326f5f118e8d563f31f18bd [
file
] [
log
] [
blame
]
#!/bin/bash
# clear memory cache to ultimately reduce swapping
phymem
=
$
(
free
|
awk
'/^Mem:/{print $2}'
)
if
[
$phymem
-
lt
513000
];
then
sync
&&
echo
1
>
/
proc
/
sys
/
vm
/
drop_caches
fi