摘要: 例子: [ZIP] EngineVersion=0 DATVersion=5127 FileName=dat-5127.zip FilePath=/pub/antivirus/datfiles/4.x/ FileSize=13481555 Checksum=6037,021E MD5=aaeb519 阅读全文
posted @ 2019-01-09 16:38 刘思聪 阅读(1716) 评论(0) 推荐(0) 编辑
摘要: # -*- coding:utf-8 -*-import redis# from redis_queuer = redis.Redis(host='127.0.0.1', port=6379, password='liang')class RedisQueue(object): def __init__(self, name, namespace='queue'): # r... 阅读全文
posted @ 2019-03-21 17:48 刘思聪 阅读(942) 评论(0) 推荐(0) 编辑
摘要: 转载:https://blog.csdn.net/Fire_KAKA/article/details/78297016 class MaxHeap(object): # def __init__(self): # self.data = [] # 创建堆 # self.count = len(sel 阅读全文
posted @ 2019-03-19 10:57 刘思聪 阅读(1751) 评论(0) 推荐(0) 编辑
摘要: http://npm.taobao.org/mirrors/chromedriver/ 下载地址 https://blog.csdn.net/yoyocat915/article/details/80580066 版本对照表 阅读全文
posted @ 2019-03-13 14:10 刘思聪 阅读(4826) 评论(0) 推荐(0) 编辑
摘要: 原文链接:https://www.cnblogs.com/bert227/p/9326313.html ConfigParser模块在python中是用来读取配置文件,配置文件的格式跟windows下的ini配置文件相似,可以包含一个或多个节(section),每个节可以有多个参数(键=值)。 注意 阅读全文
posted @ 2019-03-13 12:09 刘思聪 阅读(3537) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/php12-cn/p/8575188.html 在linux服务器中,一切皆为文件,就是说,服务器运行的个中信息,其实是可以从某些文件中查询得到的;百度后,你会知道,在Linux系统中,有一个/proc的虚拟文件系统: Linux 系统为管理员提供了非 阅读全文
posted @ 2019-03-06 16:48 刘思聪 阅读(506) 评论(0) 推荐(0) 编辑
摘要: 互联网常见架构接口压测性能分析及调优手段建议 常见的互联网架构中,一般都能看到spring+mybatis+mysql+redis搭配的身影,在我所服务的公司亦是如此。一般来说,应用内部的接口都是直接调用的,所谓的面向接口编程,应用间的调用直接调或者通过类似dubbo之类的服务框架来执行,数据格式往 阅读全文
posted @ 2019-03-01 15:15 刘思聪 阅读(4712) 评论(0) 推荐(0) 编辑
摘要: 1.https://www.cnblogs.com/rookie-c/p/5755093.html 2.https://zhidao.baidu.com/question/1539950975331032787.html 阅读全文
posted @ 2019-01-18 10:39 刘思聪 阅读(166) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/wyd168/p/6636529.html 配置文件:#user nobody;worker_processes 1;#error_log logs/error.log;#error_log logs/error.log notice;#error_l 阅读全文
posted @ 2019-01-11 11:40 刘思聪 阅读(157) 评论(0) 推荐(0) 编辑
摘要: # coding:utf-8import xlrdfrom xlutils.copy import copyclass OperationExcel: def __init__(self, file_name=None, sheet_id=None): if file_name: self.file 阅读全文
posted @ 2019-01-09 11:02 刘思聪 阅读(508) 评论(0) 推荐(0) 编辑