vote up 1 vote down star

Microsoft's new F# programming language provides the powerful combination of functional programming (first-class lexical closures and tail calls) with an efficient concurrent garbage collector that makes it easy to leverage multicores.

OCaml, Haskell, Erlang and all free Lisp and Scheme implementations that I know of do not have concurrent GCs. Scala and Clojure have a concurrent GC but no tail calls.

So there appear to be no open source programming languages that combine these features. Is that correct?

flag

75% accept rate
2  
Note that, acccording to blogs.msdn.com/clyon/archive/… , MS's concurrent GC is single-threaded (non-parallel). They do provide a parallel GC ("Server GC") which is not concurrent, but which they claim has higher throughput than the concurrent GC. – Curt Sampson May 19 at 14:15
Note that the blog post you cite is from 2004 and the .NET GC was replaced with a new "Background GC" in .NET 3.5 SP1. – Jon Harrop Aug 9 at 21:30

5 Answers

vote up 2 vote down

Scala has some tail recursion optimization. But get SISC scheme for the full thing.

link|flag
vote up 1 vote down

Erlang has a shared nothing model where each process has it's own garbage collector. Whether you consider that to be no concurrency or not it's up to you. But it sure scales very well as the number of processes goes up.

link|flag
vote up 0 vote down

Latest version of GHC supports parallel GC. See the release notes.

link|flag
I was going to note this, too, but parallel and concurrent garbage collection aren't the same thing. – mipadi Nov 10 '08 at 13:52
Indeed. That's why Haskell's GC doesn't scale. – Jon Harrop Nov 14 '08 at 21:48
Err...it depends on what you're trying to scale. As I pointed out above, MS actually provides a non-concurrent GC because it scales better (in terms of throughput) than their concurrent one. – Curt Sampson Aug 5 at 11:33
@Curt: Scaling and throughput are not the same thing. The non-concurrent parallel "server" GC option for .NET sacrifices latency to improve throughput. If you run a program with a thread for each core where only one thread allocates heavily then you will see that the server GC scales far worse than the default concurrent GC because that one thread degrades the performance of all other threads with non-concurrent GC. Haskell and the default JVM GC exhibit the same problem. Hence I said that Haskell's GC does not scale. – Jon Harrop Aug 9 at 21:18
vote up 0 vote down

Java is supposedly adding tail calls. When that happens, clojure will get them. In the meantime, you can get them manually with the loop/recur mechanism.

link|flag
loop/recur will get you tail recursion (tail calls to self) but not general tail calls. – bendin Nov 10 '08 at 13:39
That's right, bendin. Imperative loops are not a substitute. – Jon Harrop Nov 14 '08 at 22:08
vote up -1 vote down

Not really an answer to your question, but to my best knowledge, F# uses the standard .NET garbage collector, which is not concurrent; all threads are stopped during GC.

Edit : my mistake, there is a concurrent GC in multiprocessor mode.

link|flag
.NET supports a concurrent GC (at least for level 2 collections), see blogs.msdn.com/clyon/archive/… and julmar.com/blog/mark/… – Rob Walker Nov 10 '08 at 13:15

Your Answer

Get an OpenID
or

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