Например тут, пишут о том же что и я тут задвигаю - http://www.shellhacks.com/en/HowTo-TEST-Read-Write-Speed-of-a-Hard-Disk-in-Linux
Run the following command to find out the READ Speed From Buffer : $ dd if=tempfile of=/dev/null bs=1M count=1024 1024+0 records in 1024+0 records out 1073741824 bytes (1.1 GB) copied, 0.159273 s, 6.7 GB/s Clear The Linux Cache and accurately measure the Real READ Speed directly from the hard drive : $ sudo /sbin/sysctl -w vm.drop_caches=3 vm.drop_caches = 3 $ dd if=tempfile of=/dev/null bs=1M count=1024 1024+0 records in 1024+0 records out 1073741824 bytes (1.1 GB) copied, 2.27431 s, 472 MB/s |
единственное что еще можно предпринять - дать sync, после очистки, т.е.
Код PHP:
sudo su echo 3 > /proc/sys/vm/drop_caches sync