我们在使用nfs的时候会遇到往nfs server端写个文件,client需要很久才能生效,我们想让立刻生效有两种办法:1、mount -t nfs -o noac IP:/data/xxxx /xxxx
第一种方法只适用于IO不频繁的目录,如果很大,千万不要用哦,会立刻挂掉。
第二种办法是将所有缓存清除,即写入硬盘中
2、echo 3 > /proc/sys/vm/drop_caches
# sync
# 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