- 授权协议: BSD
- 开发语言: Python
- 操作系统: 跨平台
- 软件首页: http://code.google.com/p/rfoo/
软件介绍
rfoo 是一个 Python 的 RPC 远程过程调用包,可在一台普通的PC上每秒钟执行超过13000次远程方法调用,包含一个性能非常高的 rfoo.marsh 的对象序列化库,rfoo 需要 Cython 的支持。
示例代码:
class MyHandler(rfoo.BaseHandler):
def echo(self, str):
return str
rfoo.InetServer(MyHandler).start(port=50000)
客户端代码:
c = rfoo.InetConnection().connect(port=50000)
rfoo.Proxy(c).echo('Hello, world!')
The Art and Science of CSS
Jonathan Snooks、Steve Smith、Jina Bolton、Cameron Adams、David Johnson / SitePoint / March 9, 2007 / $39.95
Want to take your CSS designs to the next level? will show you how to create dozens of CSS-based Website components. You'll discover how to: # Format calendars, menus and table of contents usin......一起来看看 《The Art and Science of CSS》 这本书的介绍吧!
