Tagged Questions
0
votes
1answer
80 views
Pykka: get the base class of an Actor
I use pykka python library. I would like to create an actor, and later test if the actor created is of the proper class.
class MyActor( ThreadingActor ):
# ...
actor = MyActor.start().proxy()
...
1
vote
1answer
525 views
pykka — Actors are slow?
I am currently experimenting with Actor-concurreny (on Python), because I want to learn more about this. Therefore I choosed pykka, but when I test it, it's more than half as slow as an normal ...
13
votes
4answers
4k views
Which Actor model library/framework for python and Erlang-like?
I am looking for a easy to learn Actor library or framework for Python 2.x
I have tried Candygram and Twisted but I did not like none of them.
I'd like something will be easy to extend to suppero ...
8
votes
2answers
781 views
blocking channels vs async message passing
I've noticed two methods to "message passing". One I've seen Erlang use and the other is from Stackless Python. From what I understand here's the difference
Erlang Style - Messages are sent and ...