Chinaunix首页 | 论坛 | 博客
  • 博客访问: 5760583
  • 博文数量: 675
  • 博客积分: 20301
  • 博客等级: 上将
  • 技术积分: 7671
  • 用 户 组: 普通用户
  • 注册时间: 2005-12-31 16:15
文章分类

全部博文(675)

文章存档

2012年(1)

2011年(20)

2010年(14)

2009年(63)

2008年(118)

2007年(141)

2006年(318)

分类: LINUX

2008-10-22 21:39:48

测试程序性能的时候,之前的时候需要不停的重启机器来进行测试,比较麻烦,想有什么办法可以清空磁盘缓存呢?

If you're on OS X, the 'purge' command (part of the CHUD developer tools) will cause the disk caches to be purged. On Linux, with a 2.6.16 kernel or newer, 'echo 3 > /proc/sys/vm/drop_caches' will achieve the same effect. Another trick on Linux is to use a separate filesystem for the benchmark--if you perform a umount/mount cycle
after each run the kernel will drop any cached data that came from that filesystem.

两种方法:
echo 3 > /proc/sys/vm/drop_caches
umount /dev/sdx

参考:
http://www.gamedev.net/community/forums/topic.asp?topic_id=402069
http://blog.chinaunix.net/u/27173/showart_467689.html
阅读(4100) | 评论(4) | 转发(0) |
给主人留下些什么吧!~~

chinaunix网友2008-12-22 10:11:16

谢谢,正需要....

chinaunix网友2008-12-22 10:11:16

谢谢,正需要....

chinaunix网友2008-10-27 11:40:26

加到/etc/sysctl.conf 后就不会内存持续增加 vm.dirty_ratio = 1 vm.dirty_background_ratio=1 vm.dirty_writeback_centisecs=2 vm.dirty_expire_centisecs=3 vm.drop_caches=3 vm.swappiness =100 vm.vfs_cache_pressure=163 vm.overcommit_memory=2 vm.lowmem_reserve_ratio=32 32 8 kern.maxvnodes=3 还有修改/etc/fstab把 /dev/shm 那行加上# 或者把地一个 /dev/shm 改为/dev/sdax (swap分区的区号)

chinaunix网友2008-10-27 11:40:26

加到/etc/sysctl.conf 后就不会内存持续增加 vm.dirty_ratio = 1 vm.dirty_background_ratio=1 vm.dirty_writeback_centisecs=2 vm.dirty_expire_centisecs=3 vm.drop_caches=3 vm.swappiness =100 vm.vfs_cache_pressure=163 vm.overcommit_memory=2 vm.lowmem_reserve_ratio=32 32 8 kern.maxvnodes=3 还有修改/etc/fstab把 /dev/shm 那行加上# 或者把地一个 /dev/shm 改为/dev/sdax (swap分区的区号)