码迷,mamicode.com
首页 > 编程语言 > 详细

Python的并发编程工具包 Pykka

时间:2015-01-26 10:25:05      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:

Pykka 项目的目的是为 Python 提供了易用的并发操作抽象层,使用 Actor 模式。

Pykka 提供了 Actor API ,包含两种不同的实现:

  • ThreadingActor is built on the Python Standard Library’sthreadingandQueuemodules, and has no dependencies outside Python itself. It plays well together with non-actor threads.

  • GeventActor is built on the gevent library. gevent is a coroutine-based Python networking library that uses greenlet to provide a high-level synchronous API on top of libevent event loop. It is generally faster, but doesn’t like playing with other threads.

Pykka 的名称来源于 JVM 的 Akka,但这并不是 Akka 的 Python 语言移植。

项目主页:http://www.open-open.com/lib/view/home/1337045518713

Akka的原始网站在:http://akka.io/

Akka是基于Actor时间编程模型的实现,最初是基于Scala的,现在有了Java等移植。


Python的并发编程工具包 Pykka

标签:

原文地址:http://my.oschina.net/u/2306127/blog/371666

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!