- 授权协议: Apache
- 开发语言: Python
- 操作系统: 跨平台
- 软件首页: http://pykka.readthedocs.org/
- 软件文档: http://pykka.readthedocs.org/en/latest/index.html
软件介绍
Pykka 项目的目的是为 Python 提供了易用的并发操作抽象层,使用 Actor 模式。
Pykka 提供了 Actor API ,包含两种不同的实现:
- ThreadingActor is built on the Python Standard Library’s threading and Queue modules, 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 语言移植。
算法:C语言实现
塞奇威克 / 霍红卫 / 机械工业出版社 / 2009-10 / 79.00元
《算法:C语言实现(第1-4部分)基础知识、数据结构、排序及搜索(原书第3版)》细腻讲解计算机算法的C语言实现。全书分为四部分,共16章。包括基本算法分析原理,基本数据结构、抽象数据结构、递归和树等数据结构知识,选择排序、插入排序、冒泡排序、希尔排序、快速排序方法、归并和归并排序方法、优先队列与堆排序方法、基数排序方法以及特殊用途的排序方法,并比较了各种排序方法的性能特征,在进一步讲解符号表、树等......一起来看看 《算法:C语言实现》 这本书的介绍吧!
