I am trying to find the differences between what Clojure calls an STM and what is implemented in Haskell as STM. Taking the actual language semantic differences aside I am a little confused as Rich Hickey says in his speech that Clojure's implementation of STM is very different from anything else out there, but I don't understand the differences apart from the language choice.

link|improve this question

feedback

3 Answers

up vote 12 down vote accepted

Clojure STM has 3 big unique features:

  1. First that implements MVCC snapshot avoiding transactions restarts on read invalidation.
  2. Ensure references on read-writes provides a kind of manual control over resource acquisition order.
  3. Has explicit commute which reduces retries on commutative writes.
link|improve this answer
1  
might you also add zero overhead for non-transactional reads to this list? – mikera Jan 2 '11 at 9:57
It's true, when you use non-transactional context, but if you consider STM and retries on other transactions, I don't have sure if hole system suffer on performance caused by context swap.But JVM is very mature and STM is like a GC...very necessary, so you should think in that way – william gouvea Jan 13 '11 at 17:23
1  
Hi william. reading the Mark volkmann article and presentation , he said "reads only trigger a retry in Clojure when the history list of a Refdoesn’t contain a value committed before the txn began" . The first feature described above is correct ? – CHAPa Mar 23 '11 at 10:29
feedback

For Haskell STM, see SPJ's papers: http://research.microsoft.com/en-us/um/people/simonpj/papers/stm/

Of particular use are "Composable memory transactions" and "Transactional memory with data invariants". GHC's implementation of STM indeed isn't MVCC (which on a less-positive note also makes possible write skew -- see, e.g., here: http://en.wikipedia.org/wiki/Snapshot_isolation). I don't recall all the implementation details, but my understanding is that the description in the papers isn't all that different from what currently exists in GHC.

link|improve this answer
3  
Also noteworthy is that GHC's implementation provides compile-time guarantees of the safety of a transaction with respect to side effects; and the unique orElse combinator for atomically composing transactions. – Don Stewart May 4 '11 at 16:28
feedback

Mark Volkmann did a very detailed presentation on STMs in general (and Clojure's STM in particular) at Strange Loop 2009 which you can find here. I don't really know of any other resource (other than the code) for understanding how Clojure's STM works.

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.