vote up 11 vote down star
6

It seems that there has been a recent rising interest in STM (software transactional memory) frameworks and language extensions. Clojure in particular has an excellent implementation which uses MVCC (multi-version concurrency control) rather than a rolling commit log. GHC Haskell also has an extremely elegant STM monad which also allows transaction composition. Finally, so as to toot my own horn just a bit, I've recently implemented an STM framework for Scala which statically enforces reference restrictions.

All of these are interesting experiments, but they seem to be confined to that sphere alone (experimentation). So my question is: have any of you seen or used STM in the real world? If so, why? What sort of benefits did it bring? What about performance? (there seems to be a great deal of conflicting information on this point) Would you use STM again or would you prefer to use some other concurrency abstraction like actors?

flag

If you ask this on the clojure list, you will get a lot of responses. I believe that clojure is driven by needs Rich Hickey actually has and its STM support is there because he needs it, not as an experiment. – Lou Franco Oct 16 '08 at 19:03
Oh, I'm sure I would! But I was more interested in uses of STM outside of Clojure-land. After all, it's hardly a new idea, there should be someone who finds it useful. – Daniel Spiewak Oct 16 '08 at 19:06
As a side note, it seems that there is some ongoing experimentation with STM in .NET by Microsoft - enough so to release a working implementation already: msdn.microsoft.com/en-us/devlabs/… - now I doubt that this is being done just for the fun of it, and integrating with .NET definitely introduces a very pragmatic angle, and I'm inclined to treat the fact that this is even considered seriously as a single of technology maturing enough for "production". – Pavel Minaev Sep 4 at 16:17

4 Answers

vote up 6 vote down check

I participated in the hobbyist development of the BitTorrent client in Haskell (named conjure). It uses STM quite heavily to coordinate different threads (1 per peer + 1 for storage management + 1 for overall management).

Benefits: less locks, readable code.

Speed was not an issue, at least not due to STM usage.

Hope this helps

link|flag
vote up 4 vote down

The article "Software Transactional Memory: why is it only a research toy?" fails to look at the Haskell implementation, which is a really big omission. The problem for STM, as the article points out, is that implementations must chose between either making all variable accesses transactional unless the compiler can prove them safe (which kills performance) or letting the programmer indicate which ones are to be transactional (which kills simplicity and reliability). However the Haskell implementation uses the purity of Haskell to avoid the need to make most variable uses transactional, while the type system provides a simple model together with effective enforcement for the transactional mutation operations. Thus a Haskell program can use STM for those variables that are truly shared between threads whilst guaranteeing that non-transactional memory use is kept safe.

link|flag
vote up 1 vote down

No.

But there is a driving need for a practical multiexecutional language in the world outside of academia.

link|flag
vote up 1 vote down

You may want to read this article: Software Transactional Memory: why is it only a research toy?

link|flag

Your Answer

Get an OpenID
or

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