Tagged Questions
41
votes
8answers
3k views
Any Real-World Experience Using Software Transactional Memory?
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 ...
15
votes
3answers
833 views
How does Clojure STM differ from Haskell STM?
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 ...
11
votes
4answers
520 views
Software Transactional Memory - Composability Example
One of the major advantages of software transactional memory that always gets mentioned is composability and modularity. Different fragments can be combined to produce larger components. In lock-based ...
8
votes
3answers
616 views
What algorithms are used in Clojure, Haskell (and other languages) for STM?
As I understand there are several different algorithms for implementing Software Transactional Memory (and this is a quite active research area).
Where can I find (without having to dive into source ...