一个用于测试磁盘性能的 Python 代码

一个用于测试磁盘性能的 Python 代码,第1张

概述一个用于测试磁盘性能的 Python 代码

下面是内存溢出 jb51.cc 通过网络收集整理的代码片段。

内存溢出小编现在分享给大家,也给大家做个参考。

#!/usr/bin/python# -*- Coding: utf-8 -*-filecount = 300000filesize = 1024import random,timefrom os import systemflush = "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() - starttimesystem(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() - starttimesystem(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() - starttimesystem(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() - starttimesystem(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() - starttimesystem(flush)print "\ndelete all files:"starttime = time.time()system("rm -rf test")print time.time() - starttimesystem(flush)

以上是内存溢出(jb51.cc)为你收集整理的全部代码内容,希望文章能够帮你解决所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

总结

以上是内存溢出为你收集整理的一个用于测试磁盘性能的 Python 代码全部内容,希望文章能够帮你解决一个用于测试磁盘性能的 Python 代码所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1198506.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-03
下一篇 2022-06-03

发表评论

登录后才能评论

评论列表(0条)

保存