|
Mike Williams, one of Erlang's original developers, is fond of saying "If you don't run experiments before you start designing a new system, your entire system will be an experiment!" This philosophy is widespread around Erlang projects, in part because the Erlang development environment encourages development by prototyping. Such prototyping will also allow sensible performance estimates to be made. For those of you who want to leverage experience with C and C++, some rough rules of thumb are: • Code which involves mainly number crunching and data processing will run about 10 times slower than an equivalent C program. This includes almost all "micro benchmarks" • Large systems which spent most of their time communicating with other systems, recovering from faults and making complex decisions run at least as fast as equivalent C programs. Like in any other language or system, experienced developers develop a sense of which operations are expensive and which are cheap. Erlang ...
more
|
estimate performance of an Erlang system?
Related Questions
- A rough rule of thumb is that about the same number of lines of code are produced per developer as in a C ...
- Erlang programs only run on the Erlang VM, so every machine which is going to run an Erlang program needs to ...
- • Open Source Erlang is the most popular implementation. It is built from the same source tree as the ...
- The "official" development environment for Erlang is Emacs, and there's a special emacs mode for Erlang. This ...
- Erlang has several mechanisms for communicating with programs written in other languages, each with different ...