Tagged Questions

3
votes
7answers
114 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 …
9
votes
8answers
187 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 …
4
votes
3answers
216 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 …
27
votes
9answers
1k 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 …
12
votes
12answers
942 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 …
2
votes
2answers
140 views

Is it easy to write traditional concurrency problems in Erlang?

Hi, 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 …
5
votes
9answers
610 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 …
3
votes
6answers
432 views

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

Hi, 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
348 views

Message Passing Concurrency Library for C?

I've been looking around, but I can't seem to find a message-passing concurrency (Actor) library for C (not C++). Ideally the candidate would be based on something like libevent underneath allowing …
1
vote
3answers
188 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 …
3
votes
5answers
357 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 …
2
votes
4answers
318 views

What problem characteristics 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 …
9
votes
2answers
840 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?
4
votes
1answer
293 views

[F#] 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 …