一个用于测试磁盘性能的 Python 代码
发布时间:2020-12-17 17:05:04 所属栏目:Python 来源:网络整理
导读:今天PHP站长网 52php.cn把收集自互联网的代码分享给大家,仅供参考。 #!/usr/bin/python# -*- coding: utf-8 -*-filecount = 300000filesize = 1024import random,timefrom os import systemflush = "sudo su -c 'sync ;
以下代码由PHP站长网 52php.cn收集自互联网 现在PHP站长网小编把它分享给大家,仅供参考 #!/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) 以上内容由PHP站长网【52php.cn】收集整理供大家参考研究 如果以上内容对您有帮助,欢迎收藏、点赞、推荐、分享。 (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |