摘要:
英文版:How To Optimize Your Site With HTTP CachingI’ve been on a web tweaking kick lately: how tospeed up your javascript,gzip files with your server, and now how to set up caching. But the reason is simple:site performance is a feature.For web sites, speed may be feature #1.Users hate waiting, we get 阅读全文
摘要:
Eventlet 是一个开源的高度伸缩性的Python网络编程库。根据官方介绍大致特性如下:非阻塞I/O模型,使用epoll or libevent,关于epoll的优点,参见Linux的epoll模型和epoll精髓。协程(Coroutines)使得开发者可以采用阻塞式的开发风格,却能够实现非阻塞I/O的效果隐式事件调度,使得可以在Python解释器或者应用程序的某一部分去使用EventletEventlet 可以用来处理多线程方面的工作,它使用的是 green threads(例如Coroutines,协程),所以用资源的开销很少。关于协程,大致可以理解成允许子程序可以多次暂停和恢复执行, 阅读全文
摘要:
matplotlibis a python 2D plotting library which produces publication quality figures in a variety of hardcopy formats and interactive environments across platforms. matplotlib can be used in python scripts,web application servers, and six graphical user interface toolkits.matplotlib tries to make ea 阅读全文