一个用于测试磁盘性能的 Python 代码
发布时间:2020-05-30 18:48:59 所属栏目:Python 来源:互联网
导读:一个用于测试磁盘性能的 Python 代码
|
下面是脚本之家 jb51.cc 通过网络收集整理的代码片段。 脚本之家小编现在分享给大家,也给大家做个参考。 #!/usr/bin/python
# -*- coding: utf-8 -*-
filecount = 300000
filesize = 1024
import random,time
from os import system
flush = "sudo su -c 'sync ; echo 3 > /proc/sys/vm/drop_caches'"
randfile = open("/dev/urandom","r")
print "ncreate test folder:"
starttime = time.time()
system("rm -rf test && mkdir test")
print time.time() - starttime
system(flush)
print "ncreate files:"
starttime = time.time()
for i in xrange(filecount):
rand = randfile.read(int(filesize * 0.5 + filesize * random.random()))
outfile = open("test/" + unicode(i),"w")
outfile.write(rand)
print time.time() - starttime
system(flush)
print "nrewrite files:"
starttime = time.time()
for i in xrange(int(filecount / 10)):
rand = randfile.read(int(filesize * 0.5 + filesize * random.random()))
outfile = open("test/" + unicode(int(random.random() * filecount)),"w")
outfile.write(rand)
print time.time() - starttime
system(flush)
print "nread linear:"
starttime = time.time()
for i in xrange(int(filecount / 10)):
infile = open("test/" + unicode(i),"r")
outfile.write(infile.read());
print time.time() - starttime
system(flush)
print "nread random:"
starttime = time.time()
outfile = open("/dev/null","w")
for i in xrange(int(filecount / 10)):
infile = open("test/" + unicode(int(random.random() * filecount)),"r")
outfile.write(infile.read());
print time.time() - starttime
system(flush)
print "ndelete all files:"
starttime = time.time()
system("rm -rf test")
print time.time() - starttime
system(flush)
以上是脚本之家(jb51.cc)为你收集整理的全部代码内容,希望文章能够帮你解决所遇到的程序开发问题。 如果觉得脚本之家网站内容还不错,欢迎将脚本之家网站推荐给程序员好友。 (编辑:安卓应用网) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |
