Tagged Questions

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 ...
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 ...
26
votes
3answers
480 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 ...
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
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 ...
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
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) ...
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 ...
15
votes
5answers
818 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
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
785 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 ...
11
votes
5answers
451 views

How is “become” implemented in languages that support the actor model?

The actor model is nicely described by Gul Agha on his technical report, "Actors: a model of concurrent computation in distributed systems". On page 49 he explains the "become" command: become ...
9
votes
7answers
632 views

Thread-ring benchmark

Today I was doing the thread ring exercise from the Programming Erlang book and googled for other solutions to compare. I found that the language shootout has exactly this the same problem as a ...
9
votes
1answer
400 views

How to make Haskell's TChan defer messages like Erlang's message queues can?

Consider the following Erlang code: -module(testit). -export([testit/0]). testit() -> Pid = spawn(fun testit_proc/0), Pid ! final, Pid ! one, Pid ! two, io:format("Root ...
8
votes
6answers
1k views

What's the best way to unit test concurrent Erlang code?

I'm spending a bit of time with Erlang, and I'm wanting to apply TDD to code I'm writing. While EUnit in the standard lib provides a nice traditional unit testing framework for testing regular style ...
7
votes
2answers
211 views

Benefit from concurrent programming (-languages)? [closed]

lately i'm trying to dive into the world of concurrent programming. at the beginning i thought the only reason of multicore processors is an improved performance of the programs. but now i'm not so ...
7
votes
4answers
838 views

What makes Erlang suitable for soft real-time applications?

Some background I'm working on building a programming language for digital media programming, which should support concurrency using no-sharing message passing and soft real-time (i.e. do your best ...
6
votes
3answers
486 views

Does it make sense to use a pool of Actors?

I'm just learning, and really liking, the Actor pattern. I'm using Scala right now, but I'm interested in the architectural style in general, as it's used in Scala, Erlang, Groovy, etc. The case I'm ...
6
votes
10answers
1k views

Concurrent Prime Generator

I'm going through the problems on projecteuler.net to learn how to program in Erlang, and I am having the hardest time creating a prime generator that can create all of the primes below 2 million, in ...
5
votes
2answers
259 views

Erlang - Dining Philosophers errors

I apologize if the code is hard to follow. This is the classic dining philosophers problem, where 5 philosophers are eating, but there are only 5 sticks - and you need two to eat. These are the ...
5
votes
6answers
676 views

can one make concurrent scalable reliable programs in C as in erlang?

a theoretical question. After reading Armstrongs 'programming erlang' book I was wondering the following: It will take some time to learn Erlang. Let alone master it. It really is fundamentally ...
4
votes
2answers
144 views

Performance problem: CPU intensive work performs better with more concurrency in Erlang

tl;dr I'm getting better performance with my erlang program when I perform my CPU intensive tasks at higher concurrency (e.g. 10K at once vs. 4). Why? I'm writing a map reduce framework using ...
4
votes
5answers
479 views

Erlang-like concurrency for Python?

Is there anything for Python that has concurrency like Erlang does, particulary transparent actors over networks? I've looked at things like greenlet and stackless, but they don't seem to have network ...
4
votes
3answers
237 views

Erlang course concurrency exercise: Can my answer be improved?

I am doing this exercise from the erlang.org course: 2) Write a function which starts N processes in a ring, and sends a message M times around all the processes in the ring. After the ...
4
votes
5answers
560 views

List of PID's in Erlang

Long story short I am trying to replicate the Sleeping barber problem in Erlang. In my solution I decided that for all the processes that are waiting I would put them into a list. Then, once it was ...
4
votes
7answers
489 views

performance penalty of message passing as opposed to shared data

There is a lot of buzz these days about not using locks and using Message passing approaches like Erlang. Or about using immutable datastructures like in Functional programming vs. C++/Java. But what ...
3
votes
3answers
146 views

How do you regulate concurrency/relative process performance in Erlang?

Let's say I have to read from a directory that has many large XML files in it, and I have to parse that and send them to some service via network, and then write the response to disk again. If it ...
3
votes
8answers
711 views

Concurrent program languages for Chat and Twitter-like Apps

I need to create a simple Chat system like facebook chat and a twitter-like app. What is the best concurrent program languages in this case ? Erlang, Haskell, Scala or anything else ? Thanks ^_^
3
votes
4answers
753 views

how to do actors (erlang) in java?

I work on financial applications in Java and getting concurrency right is pain. Erlang and the actors model is supposed to be a good fit for massively concurrent applications but I can't figure out ...
2
votes
1answer
76 views

Are seda and the actor model essentially equivalent?

SEDA is essentially a set of independent "services" that communicate with each other via queues, which could further be abstracted as message passing. The actor model is a set of independent ...
2
votes
3answers
105 views

Sending messages in circles.

I am new to functional programming and just switched from haskell (Didn't like it much) to erlang (quite fond of it). As I am learning as an autodidact, I stumbled over these Exercises and started ...
2
votes
3answers
682 views

Future investment: Erlang vs. Scala [closed]

since concurrent programming becomes constantly more important, I was wondering what you think about Erlang vs. Scala in that respect. It seems to me that Scala has a larger user base and potentially ...
2
votes
1answer
242 views

Erlang not using all cores of cpu when running concurrent tasks, why?

Currently, I am reading a "Programming Erlang" book and I decided to test my system in a benchmark which creates N number of processes, here is the code: -module(my_ring). -export([start/1, ...
2
votes
3answers
313 views

What are Erlang processes behind the scenes?

I've got very limited knowledge about Erlang, but as far as I understand, it can spawn "processes" with a very low cost. So I wonder, what are those "processes" behind the scenes? Are they Fibers? ...
2
votes
4answers
773 views

Erlang-style light-weight processes in .NET

Is there any way to implement Erlang-style light-weight processes in .NET? I found some projects that implement Erlang messaging model (actors model). For example, Axum. But I found nothing about ...
2
votes
2answers
368 views

Is it easy to write traditional concurrency problems in Erlang?

I have followed an operative system course where we learned usual concurrency problems as: the dinning philosophers problem, producer-consumer problem, readers & writers problem... Since their ...
2
votes
3answers
459 views

How to “share state” with Erlang Style Concurrency?

Erlang works with message passing between actors as it's concurrency model. Assume I have 3 actors who sell items. The total number of items is 7. How do they excactly sell 7 items? How do they ...
2
votes
4answers
780 views

What challenges promote the use of parallel/concurrent architectures?

I am quite excited by the possibility of using languages which have parallelism / concurrency built in, such as stackless python and erlang, and have a firm belief that we'll all have to move in that ...
0
votes
2answers
74 views

Ejabberd module with child process

I created a logging module which logs messages to a mysql db, the current code is located here: https://github.com/amiadogroup/mod_log_chat_mysql5/blob/master/src/mod_log_chat_mysql5.erl The Problem ...
-1
votes
1answer
54 views

Is a cross-language actor middleware useful? [closed]

I would like to know your thoughts about the usefulness of a cross-language actor middleware, like something that enables us to write a system in erlang that could interact with actors in scala, for ...