- 授权协议: 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!')
Game Programming Patterns
Robert Nystrom / Genever Benning / 2014-11-2 / USD 39.95
The biggest challenge facing many game programmers is completing their game. Most game projects fizzle out, overwhelmed by the complexity of their own code. Game Programming Patterns tackles that exac......一起来看看 《Game Programming Patterns》 这本书的介绍吧!
