04 2015 档案
摘要:http://blog.csdn.net/zouxy09/article/details/8775518Deep Learning(深度学习)学习笔记整理系列zouxy09@qq.comhttp://blog.csdn.net/zouxy09作者:Zouxyversion 1.0 2013-04-0...
阅读全文
摘要:http://blog.csdn.net/hanhuili/article/details/9389433原文链接:http://www.aosabook.org/en/twisted.html作者:Jessica McKellarTwisted是用Python实现的基于事件驱动的网络引擎框架。Tw...
阅读全文
摘要:http://segmentfault.com/a/1190000000471602开源Python是开源的,介绍的这几个框架Twisted、Tornado、Gevent和tulip也都是开源的,最后这个演讲是在开源大会弄的,所以标题里肯定少不了开源。另外,我的gevent3项目也是开源的——貌似不...
阅读全文
摘要:费了2天的功夫,翻阅了无数的中文、英文资料,终于搞定。写下此文留待以后翻阅用 本文环境,centOS 5.4 ,Nignx-0.8.49, Python 2.6.5===================================================================...
阅读全文
摘要:服务器程序源代码分析之三:gunicorn时间:2014-05-09 11:33:54 类别:网站架构访问:641次gunicorn是一个python web 服务部署工具,类似flup,完全用python开发,参考了ruby的部署工具: Unicorn project官网:http://docs....
阅读全文
摘要:全面解读python web 程序的9种部署方式时间:2013-03-18 03:42:55 类别:Python访问:10114次python有很多web 开发框架,代码写完了,部署上线是个大事,通常来说,web应用一般是三层结构web server ---->application -----> ...
阅读全文
摘要:import osimport timefilename = "test.txt"info = os.stat(filename)if time.time()-info.st_mtime > 600:#10分钟 print "done"else: print "modify"
阅读全文
摘要:(一)首先要安装pcre ,他作用是让ngnix支持rewrite功能 yum -y install make zlib zlib-devel gcc-c++ libtool mkdir -p /home/oldboy/tools cd /home/oldboy/tools wget http://
阅读全文