Tagged Questions
Erlang is a general-purpose programming language and runtime environment. It has built-in support for concurrency, distribution and fault tolerance. Erlang is used in several large telecommunication systems from Ericsson. Erlang is open source and available for download on GitHub.
106
votes
9answers
7k views
Speed comparison with Project Euler: C vs Python vs Erlang vs Haskell
I have taken Problem #12 from Project Euler as a programming exercise and to compare my (surely not optimal) implementations in C, Python, Erlang and Haskell. In order to get some higher execution ...
66
votes
14answers
4k views
Why did you decide “against” using Erlang?
Have you actually "tried" (means programmed in, not just read an article on it) Erlang and decided against it for a project? If so, why? Also, if you have opted to go back to your old language, or to ...
45
votes
5answers
6k views
What is the best way to learn Erlang? [closed]
Other than specific projects (although those are welcome as well)...
What tools, books, articles, and other resources should I have at my desk to help me learn Erlang?
Also, are there mobile ...
41
votes
9answers
3k views
How/why do functional languages (specifically Erlang) scale well?
I have been watching the growing visibility of functional programming languages and features for a while. I looked into them and didn't see the reason for the appeal.
Then, recently I attended Kevin ...
39
votes
13answers
7k views
Lisp and Erlang Atoms, Ruby and Scheme Symbols. How useful are they?
How useful is the feature of having an atom data type in a programming language?
A few programming languages have the concept of atom or symbol to represent a constant of sorts. There are a few ...
38
votes
14answers
6k views
Where is Erlang used and why?
I would like to know a list of the most common application/websites/solutions where Erlang is used, successfully or not.
Explaining why it is used into a specific solution instead of others ...
37
votes
12answers
2k views
Can anyone recommend a primer to Erlang?
I've recently found myself getting more and more interested in Erlang.
I've purchased a book (Programming in Erlang) and started reading up on the basics. Reading books is time consuming so I am ...
35
votes
2answers
3k views
Is F# really faster than Erlang at spawning and killing processes?
Updated: This question contains an error which makes the benchmark meaningless. I will attempt a better benchmark comparing F# and Erlang's basic concurrency functionality and inquire about the ...
33
votes
2answers
4k views
What is Erlang written in?
What is Ericsson's implementation of Erlang and Erlang/OTP written and compiled in? Is is assembly, C or Erlang itself?
Update 1: Thanks to DrJokepu. If I understand correctly, Erlang source-to-VM ...
32
votes
6answers
3k views
Technically why is processes in Erlang more efficient than OS threads?
Erlangs Characteristics
From Erlang Programming (2009):
Erlang concurrency is fast and scalable. Its processes are lightweight in that the Erlang virtual machine does not create an OS thread for ...
28
votes
15answers
7k views
Setting up an Erlang development environment
I'm interested in looking at Erlang and want to follow the path of least resistance in getting up and running.
At present, I'm planning on installing Erlang R12B-3 and Erlide (Eclipse plugin). This ...
26
votes
3answers
479 views
The actor model: Why is erlang special? Or, why do you need another language for it?
I've been looking into learning erlang, and as a result, have been reading (okay, skimming) about the actor model.
From what I understand, the actor model is simply a set of functions (run within ...
26
votes
9answers
3k views
Good resources on using functional programming in game development?
I'm quite new to that functional programming paradigm, but so far I like it. Since I'm into game development, I want to try it out in writing some games in purely functional programming style. I don't ...
25
votes
6answers
5k views
Node.js or Erlang
I really like these tools when it comes to the concurrency level it can handle.
Erlang looks like much more stable solution but requires much more learning and a lot of diving into functional ...
25
votes
8answers
6k views
Current state of Erlang web development? Frameworks, Template languages
Django is to Python as Rails is to Ruby. What is the current front-runner for Erlang?
Recent Erlang web activity has resulted in many new frameworks but they are all still moving targets. ErlyWeb is ...
25
votes
10answers
2k views
Concurrency: how does shared memory vs message passing handle large data structures?
In looking at Go and Erlang's approach to concurrency, I noticed that they both rely on message passing.
This approach obviously alleviates the need for complex locks because there is no shared ...
21
votes
5answers
2k views
Mixing Erlang and Haskell
If you've bought into the functional programming paradigm, the chances are that you like both Erlang and Haskell. Both have purely functional cores and other goodness such as lightweight threads that ...
20
votes
1answer
509 views
Erlang: optimize complex qlc
I have qlc
RefsBlocked = qlc:e(qlc:q([
Ref1 ||
{{Ref1, {pattern, {_Status1, _Pattern1, Limit1}}}, Count} <- dict:to_list(
qlc:fold(
fun({Key, _Ref2}, Acc) ->
...
20
votes
3answers
2k views
How, if at all, do Erlang Processes map to Kernel Threads?
Erlang is known for being able to support MANY lightweight processes; it can do this because these are not processes in the traditional sense, or even threads like in P-threads, but threads entirely ...
20
votes
8answers
4k views
Haskell for a server?
With regards to making a game server, it seems Erlang always comes up as a language that is "built for this kind of thing" with its scalability and concurrency features. I don't have experience in ...
20
votes
7answers
5k views
What libraries can I use to build a GUI with Erlang?
Which libraries can I use to build a GUI for a Erlang application? Please one option per answer.
19
votes
1answer
621 views
remove not_exist_already node from mnesia cluster(scheme)
I have a bad node (it doesn't exist) in the mnesia cluster data when I get:
> mnesia:system_info(db_nodes)
[bad@node, ...]
How do I remove it from the cluster?
I tried:
> ...
18
votes
3answers
1k views
Why is Erlang said to be more suited for server side programming in webgames than Java and C++?
I don't really understand, how can Erlang be more efficient than C++?
18
votes
2answers
2k views
How do I make an already written concurrent program run on a GPU array?
I have a neural network written in Erlang, and I just bought a GeForce GTX 260 card with a 240 core GPU on it. Is it trivial to use CUDA as glue to run this on the graphics card?
17
votes
2answers
530 views
Distributed Haskell state of the art in 2011?
I've read a lot of articles about distributed Haskell. Much work has been done but seems to be in the area of distributing computations. I saw the remote package which seems to implement Erlang-style ...
17
votes
4answers
598 views
Concurrent programming techniques, pros, cons
There is at least three well-known approaches for creating concurrent applications:
Multithreading and memory synchronization through locking(.NET, Java). Software Transactional Memory (link text) ...
17
votes
3answers
3k views
Finding some good Erlang books [closed]
Two questions:
1) What's the best book for learning to program in Erlang?
2) And also what's the best reference book for the proficient Erlang programmer?
Thanks guys!
17
votes
5answers
5k views
Considering an Erlang web framework to learn and use in production
I’ve started learning Erlang a few days ago and it’s definitely a very interesting language and very suitable for web development (back end at least). I am going to experiment and eventually settle ...
17
votes
17answers
4k views
Hidden Features of Erlang [closed]
In the spirit of:
Hidden Features of C#
Hidden Features of Java
Hidden Features of ASP.NET
Hidden Features of Python
Hidden Features of HTML
and other Hidden Features questions
What are the hidden ...
16
votes
5answers
367 views
How does one avoid creating an ad-hoc type system in dynamically typed languages?
In every project I've started in languages without type systems, I eventually begin to invent a runtime type system. Maybe the term "type system" is too strong; at the very least, I create a set of ...
16
votes
12answers
2k views
Want to add a functional language to my toolchest. Haskell or Erlang? [closed]
I've been an OO/procedural guy my whole career except in school where I did a lot of logic programming (Prolog). I work on an amazing variety of projects (freelancer) and so I don't want the tools I ...
16
votes
3answers
3k views
Design patterns for Agent / Actor based concurrent design
Recently i have been getting into alternative languages that support an actor/agent/shared nothing architecture - ie. scala, clojure etc (clojure also supports shared state).
So far most of the ...
16
votes
8answers
1k views
What are some interesting projects to solve in Erlang for learning purposes?
I recently discovered Erlang and am now working my way through a couple of tutorials. By now I'm looking forward to actually implement something as a hobby project. I'm not really interested in yet ...
16
votes
4answers
4k views
Can someone explain the structure of a Pid in Erlang?
Can someone explain the structure of a Pid in Erlang?
Pids looks like this : <A.B.C> , e.g. <0.30.0> , but i would like to know what is the meaning of these three "bits" : A, B and C.
'A' ...
16
votes
17answers
2k views
Gaining a better understanding of functional programming
What would you recommend for an experienced OO programmer who wants to learn more about functional programming?
Since reading Mark Dominus's Higher Order Perl, I've begun using more functional ...
15
votes
5answers
816 views
Concurrency model: Erlang vs Clojure
We are going to write a concurrent program using Clojure, which is going to extract keywords from a huge amount of incoming mail which will be cross-checked with a database.
One of my teammates has ...
15
votes
6answers
632 views
Something like 99 Erlang problems?
There are "99 problems" lists for Lisp, Prolog, and Haskell.
Is there something comparable for Erlang?
I'm looking for something that ascends from he very basic things to more complex, in ways ...
15
votes
3answers
2k views
Design patterns/best practice for building Actor-based system
I am struggling to find any decent links to design patterns, best practice or good, basic architectural principles that should be used in building Actor-based apps. Those few that I know of are:
Blog ...
15
votes
17answers
2k views
What should a software engineer (web) start by learning - Erlang, Haskell, Python, C++, F#
What would you suggest what will be the next choice of language that could benefit an engineer in his career utmost? I am a Software Engineer and almost everything I engineered is for WWW.
I have ...
15
votes
10answers
4k views
Functional languages (Erlang, F#, Haskell, Scala)
1) Are functional languages suited for web applications development?
2) Are functional languages suited for business/ERP/CRM type of applications?
15
votes
14answers
966 views
How can I make sure N threads run at roughly the same speed?
I'm toying with the idea of writing a physics simulation software in which each physical element would be simulated in its own thread.
There would be several advantages to this approach. It would be ...
15
votes
3answers
1k views
Mailbox Processor on Distributed Systems
I noticed the following comment in my copy of Expert F# on page 379:
Passing and Processing Messages
A distinction is often made between
shared-memory concurrency and message
passing ...
15
votes
13answers
2k views
Erlang-style Concurrency for Other Languages
What libraries exist for other programming languages to provide an Erlang-style concurrency model (processes, mailboxes, pattern-matching receive, etc.)?
Note: I am specifically interested in things ...
14
votes
2answers
784 views
Erlang style concurrency in the D programming language
I think Erlang-style concurrency is the answer to exponential growth of core count. You can kind of fake it with other main stream languages. But the solutions always leave me wanting. I am not ...
14
votes
3answers
905 views
How do I do dependency injection and mocks in erlang?
When writing code in Java, it is very helpful to embrace composition and dependency injection to make it possible and easy to do pure unit testing by mocking collaborating objects.
I find that doing ...
14
votes
7answers
9k views
What's a good IDE for Erlang programming?
As far as I know there's Erlang plugin for NetBeans and Eclipse. Which one has the upper hand at the moment?
Are there any other IDE for Erlang which I didnt mention, and how good are they when ...
14
votes
5answers
9k views
convert an integer to a string in Erlang
I know, Erlang strings should be avoided at all costs...
but if I'm not doing that, how do I produce "5" from 5?
in particular, is there anything like io:format("~p",[5]) that would return a ...
14
votes
4answers
5k views
CouchDB Backups and Cloneing the Database
We're looking at CouchdDB for a CMS-ish application. I know the database is implemented as a set of files in the file system, what I'm looking for are common patterns, best practices and workflow ...
13
votes
6answers
1k views
TCP-based RPC server (Erlang or something similar?) for iOS/Android app communication
I'm building native mobile applications in both iOS and Android. These apps require "realtime" updates from and to the server, same as any other network-based application does (Facebook, Twitter, ...
13
votes
5answers
892 views
Erlang's let-it-crash philosophy - applicable elsewhere?
Erlang's (or Joe Armstrong's?) advice NOT to use defensive programming and to let processes crash (rather than pollute your code with needless guards trying to keep track of the wreckage) makes so ...