Ted

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

2011年12月24日

摘要: 英文版: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 阅读全文
posted @ 2011-12-24 23:41 wufawei 阅读(379) 评论(0) 推荐(0) 编辑

摘要: Eventlet 是一个开源的高度伸缩性的Python网络编程库。根据官方介绍大致特性如下:非阻塞I/O模型,使用epoll or libevent,关于epoll的优点,参见Linux的epoll模型和epoll精髓。协程(Coroutines)使得开发者可以采用阻塞式的开发风格,却能够实现非阻塞I/O的效果隐式事件调度,使得可以在Python解释器或者应用程序的某一部分去使用EventletEventlet 可以用来处理多线程方面的工作,它使用的是 green threads(例如Coroutines,协程),所以用资源的开销很少。关于协程,大致可以理解成允许子程序可以多次暂停和恢复执行, 阅读全文
posted @ 2011-12-24 22:30 wufawei 阅读(1109) 评论(0) 推荐(0) 编辑

摘要: Beautiful Soup是用Python写的一个HTML/XML的解析器,它可以很好的处理不规范标记并生成剖析树(parse tree)。 它提供简单又常用的导航(navigating),搜索以及修改剖析树的操作。它可以大大节省你的编程时间。 对于Ruby,使用Rubyful Soup。这个文档说明了Beautiful Soup 3.0主要的功能特性,并附有例子。 从中你可以知道这个库有哪些好处,它是怎样工作的, 怎样让它帮做你想做的事以及你该怎样做当它做的和你期待不一样。具体用法参见 Beautiful Soup Documentation. 阅读全文
posted @ 2011-12-24 21:15 wufawei 阅读(301) 评论(0) 推荐(0) 编辑

摘要: 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 阅读全文
posted @ 2011-12-24 21:11 wufawei 阅读(201) 评论(0) 推荐(0) 编辑