Erlang vs. Stackless Python: a first benchmark
muharem.wordpress.com
Erlang vs. Stackless Python: a first benchmark
1–10 of 17 posts
Re: Erlang vs. Stackless Python: a first benchmark
#2Re: Erlang vs. Stackless Python: a first benchmark
#3Re: Erlang vs. Stackless Python: a first benchmark
#4Re: Erlang vs. Stackless Python: a first benchmark
#5Re: Erlang vs. Stackless Python: a first benchmark
#6Re: Erlang vs. Stackless Python: a first benchmark
#7For most things language performance is just a constant - the really hard issue is making something distributed and it's really here that Erlang shines. Being a Python programmer I know that creating a distributed application in Python is far from simple - while it's almost a trivial task in Erlang.
Re: Erlang vs. Stackless Python: a first benchmark
#8For most things language performance is just a constant - the really hard issue is making something distributed and it's really here that Erlang shines. Being a Python programmer I know that creating a distributed application in Python is far from simple - while it's almost a trivial task in Erlang.
I was wondering about this. Is it really comparing like with like? I do not know Erlang, but I thought it had a lot of overhead from being designed for distributed apps etc.
Re: Erlang vs. Stackless Python: a first benchmark
#9not surprising that python is competitive...afaik haskell also crushes erlang in lightweight threading benchmarks (supposedly the core strength of erlang).
Getting lightweight threading of the same speed or faster is good, but it's less than 1/3 of the equation.