Python实现测试磁盘性能的方法


Posted in Python onMarch 12, 2015

本文实例讲述了Python实现测试磁盘性能的方法。分享给大家供大家参考。具体如下:

该代码做了如下工作:

create 300000 files (512B to 1536B) with data from /dev/urandom
rewrite 30000 random files and change the size
read 30000 sequential files
read 30000 random files
delete all files
sync and drop cache after every step

bench.py代码如下:

#!/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)

希望本文所述对大家的Python程序设计有所帮助。

Python 相关文章推荐
Python实现一个简单的MySQL类
Jan 07 Python
python发送邮件功能实现代码
Jul 15 Python
python实现FTP服务器服务的方法
Apr 11 Python
python 简单搭建阻塞式单进程,多进程,多线程服务的实例
Nov 01 Python
Python处理中文标点符号大集合
May 14 Python
python实现在图片上画特定大小角度矩形框
Oct 24 Python
pygame游戏之旅 添加键盘按键的方法
Nov 20 Python
Python+OpenCV实现图像融合的原理及代码
Dec 03 Python
Django中文件上传和文件访问微项目的方法
Apr 27 Python
Pytest测试框架基本使用方法详解
Nov 25 Python
Python爬虫之Selenium设置元素等待的方法
Dec 04 Python
python regex库实例用法总结
Jan 03 Python
Python解析xml中dom元素的方法
Mar 12 #Python
Python实现Tab自动补全和历史命令管理的方法
Mar 12 #Python
Python实现将n个点均匀地分布在球面上的方法
Mar 12 #Python
Python求解平方根的方法
Mar 11 #Python
python自动格式化json文件的方法
Mar 11 #Python
python处理csv数据的方法
Mar 11 #Python
python模拟鼠标拖动操作的方法
Mar 11 #Python
You might like
ThinkPHP CURD方法之order方法详解
2014/06/18 PHP
PHP中Memcache操作类及用法实例
2014/12/12 PHP
PHP扩展程序实现守护进程
2015/04/16 PHP
PHP curl使用实例
2015/07/02 PHP
PHP实现的基于单向链表解决约瑟夫环问题示例
2017/09/30 PHP
PHP的imageTtfText()函数深入详解
2021/03/03 PHP
iframe里的页面禁止右键事件的方法
2014/06/10 Javascript
js实现键盘操作实现div的移动或改变的原理及代码
2014/06/23 Javascript
引用其它js时如何同时处理多个window.onload事件
2014/09/02 Javascript
javascript实现炫酷的拖动分页
2015/05/11 Javascript
jQuery异步上传文件插件ajaxFileUpload详细介绍
2015/05/19 Javascript
高性能JavaScript循环语句和条件语句
2016/01/20 Javascript
微信小程序之页面跳转和参数传递的实现
2017/09/29 Javascript
十分钟带你快速了解React16新特性
2017/11/10 Javascript
js实现图片区域可点击大小随意改变(适用移动端)代码实例
2019/09/11 Javascript
基于Vue的商品主图放大镜方案详解
2019/09/19 Javascript
python打开网页和暂停实例
2014/09/30 Python
Python 实现微信自动回复的方法
2020/09/11 Python
python实现图片,视频人脸识别(dlib版)
2020/11/18 Python
python xlsxwriter模块的使用
2020/12/24 Python
利用css3制作3D样式按钮实现代码
2013/03/18 HTML / CSS
H5调用相机拍照并压缩图片的实例代码
2017/07/20 HTML / CSS
理肤泉美国官网:La Roche-Posay
2018/01/17 全球购物
Expedia西班牙:预订酒店、机票、旅行和廉价度假套餐
2019/04/10 全球购物
《夕阳真美》教学反思
2014/04/27 职场文书
关于读书的活动方案
2014/08/14 职场文书
基层党员对照检查材料
2014/08/25 职场文书
2014年前台接待工作总结
2014/12/05 职场文书
小学五一劳动节活动总结
2015/02/09 职场文书
家长对孩子的寄语
2015/02/26 职场文书
2015年预备党员自我评价
2015/03/04 职场文书
反腐倡廉主题教育活动总结
2015/05/07 职场文书
三方合作意向书范本
2015/05/09 职场文书
党员观看《筑梦中国》心得体会
2016/01/18 职场文书
大学生军训心得体会5篇
2019/08/15 职场文书
深入探讨opencv图像矫正算法实战
2021/05/21 Python