上一页 1 ··· 68 69 70 71 72 73 74 75 76 ··· 110 下一页
摘要: 1、解析速度:ElementTree在 Python 标准库中有两种实现。一种是纯 Python 实现例如 xml.etree.ElementTree ,另外一种是速度快一点的 xml.etree.cElementTree 。你要记住: 尽量使用 C 语言实现的那种,因为它速度更快,而且消耗的内存更 阅读全文
posted @ 2017-12-28 21:37 脚本小娃子 阅读(18372) 评论(0) 推荐(1) 编辑
摘要: 6 PEP 278: Universal Newline Support The three major operating systems used today are Microsoft Windows, Apple's Macintosh OS, and the various Unix de 阅读全文
posted @ 2017-12-28 10:24 脚本小娃子 阅读(2978) 评论(0) 推荐(0) 编辑
摘要: python计算文件的行数和读取某一行内容的实现方法 :最简单的办法是把文件读入一个大的列表中,然后统计列表的长度.如果文件的路径是以参数的形式filepath传递的,那么只用一行代码就可以完成我们的需求了: 1、http://blog.csdn.net/shudaqi2010/article/de 阅读全文
posted @ 2017-12-28 10:16 脚本小娃子 阅读(561) 评论(0) 推荐(0) 编辑
摘要: pip search kafka可以搜索到很多kafka的python插件,选择一个大家用的比较多的 celery结合kafka使用 使用kafka扩展python logging集中式日志收集 redis做消息队列的话,存在丢消息的情况 kafka可以做到保证消息不丢失 参考: 1、http:// 阅读全文
posted @ 2017-12-28 10:03 脚本小娃子 阅读(1714) 评论(0) 推荐(0) 编辑
摘要: 1、先看下文档 merge(instance, load=True) Copy the state of a given instance into a corresponding instance within this Session. Session.merge() examines the 阅读全文
posted @ 2017-12-27 21:26 脚本小娃子 阅读(9232) 评论(0) 推荐(0) 编辑
摘要: 待学习: 1、https://www.cnblogs.com/jlj9520/p/6625535.html 2、http://python.jobbole.com/87112/ 3、 阅读全文
posted @ 2017-12-27 09:52 脚本小娃子 阅读(1225) 评论(0) 推荐(0) 编辑
摘要: ps aux --sort +rss/rss根据内存正序排 ps aux --sort -rss 逆序 ps aux --sort -pid/pid ps aux --sort %cpu/-%cpu 根据cpu排序 关于ps命令显示不全的解决方法:ps aux | more ; ps auxww 后 阅读全文
posted @ 2017-12-26 20:38 脚本小娃子 阅读(4821) 评论(0) 推荐(0) 编辑
摘要: mvn dependency:copy-dependencies -DoutputDirectory=/home/admin/git/oceanus/test 会把所有依赖的插件版本都拷贝进去,而不是项目最后使用的插件 >mvn dependency:analyze[INFO] maven-depe 阅读全文
posted @ 2017-12-26 16:48 脚本小娃子 阅读(6456) 评论(0) 推荐(0) 编辑
摘要: setup和teardown有点类似于每个测试用例开始和结束时要做的动作 A Thread Group is the starting point of any Jmeter Test Plan. All the elements of a Test plan must be defined und 阅读全文
posted @ 2017-12-26 15:23 脚本小娃子 阅读(2219) 评论(0) 推荐(0) 编辑
摘要: Stepping Thread Group马上要被废弃了,废弃原因不知道,官方推荐使用 BlazeMeter Inc.公司贡献的插件Concurrency Thread Group,配合 Throughput Shaping Timer使用,可以达到相同的自定义并发用户的图形效果 1、steppin 阅读全文
posted @ 2017-12-26 14:42 脚本小娃子 阅读(1780) 评论(0) 推荐(0) 编辑
上一页 1 ··· 68 69 70 71 72 73 74 75 76 ··· 110 下一页