发布时间:2016-03-22 11:08:18
用epoll写的,换select写法也差不多点击(此处)折叠或打开# -*- coding: UTF-8 -*-import reimport socketimport selectimport loggingimport structimport time# 里面存放自定义.........【阅读全文】
发布时间:2016-03-16 23:21:10
Non-blocking pipe reads in Windows Pythonlinux下很容易实现的方法在windows下行不通....windows下select不能操作管道百度找了半天蛋都碎了,最后只能祭出google感谢github!!!!看到github上的内容的时候 真是太开心了参考来源https://gist.github.com/techtonik/48c2561f38f729a15b7bwindows对应pipe.........【阅读全文】
发布时间:2016-03-14 11:02:19
中文里都说是slowlog的错,关闭slow即可解决这个问题但是为什么slow log会导致这个错误?实际环境一定要关闭slow log?详细原因还得翻英文http://www.tuicool.com/articles/ZFBz2i点击(此处)折叠或打开In other words: when PHP's slowlog tries to get an actual stacktrace, it may se.........【阅读全文】
发布时间:2016-03-11 20:40:58
网上找的都不太好自己写了个 模仿tail点击(此处)折叠或打开def get_last_line(file_path, max_line_number, buffer_size=4096): # 从末尾读取文件并返回以行组成的列表 """.........【阅读全文】