|
|
|
|
|
by angusgr
5534 days ago
|
|
Yes! Also, even when you do care about performance, general performance isn't ever the same as specific performance. You have to optimise to your use case, not some arbitrary general use case like "render a Mandelbrot set" or "calculate pi". If I have a slow On^2 Erlang algorithm, then I'm a lot better off looking at ways to rewrite it as Olog(n) instead of scrapping Erlang and moving to Java because it had a better score on the programming language shootout. |
|
http://shootout.alioth.debian.org/dont-jump-to-conclusions.p...
> scrapping Erlang and moving to Java
"Most (all?) large systems developed using Erlang make heavy use of C for low-level code, leaving Erlang to manage the parts which tend to be complex in other languages, like controlling systems spread across several machines and implementing complex protocol logic."
http://www.erlang.org/faq/introduction.html#id49850