If you want to create programs with threads/processes that run parallel you have to learn about many stuff, like race conditions, locks, semaphors, monitors, deadlocks ....

Is there a language that makes creation of parallel programs as easy as object-oriented programming languages help creating complex architectures? Or which programming-languages has the best and simplest concepts to support you with this task?

link|improve this question

feedback

18 Answers

up vote 30 down vote accepted

Any functional language - Erlang is probably the most commonly used in industry. Especially in telecoms.

The advantage of a functional language is that a function call never changes data, it only returns new data. So there is no problem of locking/semaphores/etc to prevent two functions accessing the same data at the same time.

There is a very good introduction book from pragmatic, but making the brain-switch to functional programming isn't necessarily easy

Programaming Erlang cover

There is a google tech talk on Erlang, which includes the quote. "in the teleconms industry - downtimes of a 1 or 2 seconds a year are just not acceptable"!

link|improve this answer
I think that the image didn't show because you had a space between the brackets and parentheses. The previewer's parsing is slightly more forgiving. – Mark Cidade Sep 26 '08 at 0:22
feedback

Clojure

link|improve this answer
feedback

Summary for the impatient: Know the principles behind functional programming. The rest comes relatively easy regardless of your choice of language.

In principle, you can even use C/C++ for concurrent programming as easily as functional languages, if you follow the conventions of the functional programming . For example, if you pass an object to a function and return a new object without modifying the original, you both avoid side effects, minimize memory management headaches and don't sacrifice flexibility for the inevitable hacks. This style also gives modern compilers plenty of opportunities to optimize object passing.

The point is, if you know how to apply these principles, the choice of language becomes less important.

link|improve this answer
feedback

Clojure is possibly the most interesting modern language from a concurrency perspective. It's a functional language that supports a very powerful STM (software transactional memory) model for lock-free concurrency.

This video on Clojure concurrency is really work a look - it convinced me that Clojure offered something very novel and special.

As a taster, here's some Clojure code that demonstrates how easy it is to write safe, reliable, concurrent, transactional code without locks:

;; define two accounts that we want to transfer money between:

(def account-a (ref 1000000))
(def account-b (ref 0))

;; launch 10000 tasks to transfer a random amount of money
;; each of which can happens on a different thread or core
;; each takes place inside a (dosync ....) transaction

(dotimes [i 10000] 
  (future 
    (let [transfer (rand-int 10)]
      (dosync
        (alter account-a - transfer)
        (alter account-b + transfer)))))

;; a transactional read of the two accounts should then 
;; always have the same total amount, at any point in time
;; (even while the above operation is still running)

(dosync 
  (+ @account-a @account-b))

=> 1000000
link|improve this answer
feedback

Erlang was built with concurrency in mind. It's a functional programming language that is supposed to scale very well. If you're looking for a more object-oriented language, I've found the easiest OO language to do concurrency in is Java. Even then it is still quite difficult (and it will be useful to learn all those additional principles of concurrent execution). The java.util.concurrent package added in Java 1.5 did add a great deal of additional functionality.

link|improve this answer
feedback

The Go language from Google is comes with concurrency support

link|improve this answer
feedback

Mozart Oz works pretty well, as would Alice ML (which uses a similar concurrency model). Oz uses dataflow concurrency, where pretty much everything is allowed to be a future value and blocking happens as data is needed. If you stick to the declarative/functional portions of the language, it is possible to have deadlocks but impossibleto have race conditions.

link|improve this answer
feedback

Occam

link|improve this answer
see also the transterpreter VM and the occam-pi pages - occam is a great language for learning about and exploring concurrency on a variety of platforms including lego mindstorms, arduino and other (bigger) platforms. – Damian Jun 14 '11 at 21:26
feedback

As verticalarhat pointed out,

Java 1.5 and Java 1.6 have made concurrent programming a lot more accessible to developers. Java 1.5 introduced some concurrent collections and "Future Task" constructs. Java 1.6 has really improved and elaborated on all this, with Concurrent Queues, Thread Pools, Task Executors. Open-source frameworks such as http://ehcache.sf.net/ and springframework have evolved to fully-leverage them, one of my current favorites being org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor.

I've pushed to production a number of highly-loaded applications that use the living daylights out of those constructs, and it's a real joy to see all 8 of your CPU Cores equally-pegged as your app hums along.

Concurrent collections, queues and thread pools are a big deal. Until those were readily available and easy-to-use, many application-scaling patterns were only available if you spent a lot of money on high-priced frameworks from the likes of Oracle.

link|improve this answer
feedback

Erlang was designed precisely for such things. Ericcson (the electronics company) invented it so they could make their mission-critical applications fault tolerant and clusterable.

link|improve this answer
feedback

I'd say Qt4's QtConcurrent APIs makes it relatively easy to do that.

link|improve this answer
feedback

Erlang is probably the best mainstream way to do concurrency because of slow (see shootout) virtual machine but with extremely low overhead per thread and good thread isolation (you cannot mutate data that are not local to thread and can kill and restart threads very easily).

But there are TONS of non-mainstream research and experimental languages specifically designed to treat concurrency much better than an uneducated mind can imagine.

Some of those languages have become mature and production-ready (e.g. GHC implementation of Haskell), but they usually require a PhD in mathematics and/or computer science to write big programs and thus not very useful for commercial apps because of their learning curve.

Haskell support for concurrency includes:

  • Light-weight native (as opposed to interpreted) threads ("sparks")
  • Software transaction memory
  • Data Parallel Haskell (DPH) library
  • Communicating Haskell Processes (CHP) library
  • many more (MVar, futures, laziness, functional purity etc)

If you want to learn current state of the art, I suggest you going to CiteSeerX or similar catalogs of scientific research publications and reading about Pi-Calculus and related calculi for statically safe concurrency and paralellism. There are literally thousands.

One example of such publication is Communicating Sequential Processes by Tony Hoare. CHP is a Haskell implementation of those ideas.

In general, there are different grades of concurrency support:

  • Mainstream (e.g. Java, C#)
  • Advanced mainstream (Erlang, Node.js, Clojure, Go)
  • Mature research languages and libraries (Haskell, Mozart/Oz, ATS)
  • Yet unimplemented ideas or ideas with a buggy and unoptimized implementations (scientific literature and experimental proof-of concept compilers, e.g. "Concurrent Objects in a Process Calculus (1995)" by Pierce)

So to give you a better answer it's good to know why you need an advanced language for concurrency. E.g. are you writing a thesis, doing a hobby research or creating a commercial software product?

link|improve this answer
feedback

None. Concurrent programming is never easy. :(

link|improve this answer
3  
it says easy as possible not easy period – Mark Cidade Sep 26 '08 at 0:23
No sense of humor, I see... – Dima Oct 20 '08 at 18:13
2  
It's an amusing comment, and while it may not answer the question directly, it may still be a valid point. – Adam Batkin Jul 20 '09 at 11:20
feedback

I haven't used it yet, but I have read a lot about Erlang doing concurrency REALLY well... basically there are no threads, only processes. On top of that, you can only send read only messages.

From what I've heard, they have done concurrency in a way that is very easy to deal with, and scales well... but again, I haven't done it myself, but it is something you may want to look into :-)

link|improve this answer
feedback

I'm surprised no one mentioned F#! It's a full-blown ML variant which allows real-multiprocessing, not just "green" threads. It even has processing affinity!

link|improve this answer
feedback

How about Ciao 1? It evolved from Prolog, but has much more to offer. It supports functional paradigm, including higher-order functions, and is free (GPL, LGPL).

From the project website (ciaohome.org):

  • "Ciao supports programming with functions, higher-order (with predicate abstractions), constraints, and objects, as well as feature terms (records), persistence, several control rules (breadth-first search, iterative deepening, ...), concurrency (threads/engines), a good base for distributed execution (agents), and parallel execution. Libraries also support WWW programming, sockets, external interfaces (C, Java, ...), etc."
link|improve this answer
feedback

My uneducated guess is that using a 'Shared Nothing' strategy/pattern/principle is the best way to write a concurrent program.

It should be possible to have 'Shared Nothing' in any language.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.