Live data from Hacker News

Pulsar: Concurrent framework for Python

pythonhosted.org

11–14 of 14 posts

Re: Pulsar: Concurrent framework for Python

#11
post #8
post #2

Interesting! Seems like a hyper-framework, a one-fits-all solution for a python backend. I would like to see any benchmarks comparing this to tornado/twisted/nodejs and perhaps an async mongoDB client implementation. Great work anyway!

Thinking about new tech in term of performance is silly. If you need performance NOW just stick with the known solution because odds are you also need stability and a well tested platform.

1) Are known solutions always performant (which is a broad topic)?

2) "I would like to see any benchmarks comparing this to..." != "I only care about performance and nothing else matters"

Re: Pulsar: Concurrent framework for Python

#13
post #7

Finally a concurrency framework that works with Python 3! I will definitely have to check this out, because Twisted is the only thing preventing me from switching (and Gevent doesn't support it either).

What about concurrent.futures from standard library?

It's not really a concurrency framework, just some tooling. It does absolutely nothing to provide evented-IO for example.

Re: Pulsar: Concurrent framework for Python

#14

Finally a concurrency framework that works with Python 3! I will definitely have to check this out, because Twisted is the only thing preventing me from switching (and Gevent doesn't support it either).

The porting process is slow but sure, fortunately. Some parts already work. It'd be cool if we stopped hitting broken stdlib functions. (Turns out that sometimes regular quotes did actually mean bytestrings.)
Post reply on HN