Tagged Questions
In computer science, transactional memory (TM) is a concurrency control mechanism analogous to database transactions for controlling access to shared memory in concurrent computing. It is an alternative to lock-based synchronization. It is typically divided into hardware and software implementations (HTM and STM respectively)
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
831 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
519 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 ...
11
votes
3answers
330 views
STM monad problem
This is just a hypothetical scenario to illustrate my question. Suppose that there are two threads and one TVar shared between them. In one thread there is an atomically block that reads the TVar ...
9
votes
1answer
400 views
How to make Haskell's TChan defer messages like Erlang's message queues can?
Consider the following Erlang code:
-module(testit).
-export([testit/0]).
testit() ->
Pid = spawn(fun testit_proc/0),
Pid ! final,
Pid ! one,
Pid ! two,
io:format("Root ...
8
votes
2answers
244 views
A way to form a 'select' on MVars without polling
I have two MVars (well an MVar and a Chan). I need to pull things out of the Chan and process them until the other MVar is not empty any more. My ideal solution would be something like the UNIX ...
8
votes
3answers
615 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 ...
5
votes
3answers
354 views
Is Software Transactional Memory the same as database transactions?
I have read alot about Software Transactional Memory, especially in relation to Haskell but I am trying to figure how it is different from database transactions? Are there some advantages I do not ...
5
votes
2answers
244 views
Choosing a consistency model for a concurrent programming language
I am in the design phase of a programming language, currently thinking about the concurrency aspects. I need to figure out a consistency model, i.e. how data is handled by concurrent processes ...
4
votes
1answer
322 views
How to add a finalizer on a TVar
Background
In response to a question, I built and uploaded a bounded-tchan (wouldn't have been right for me to upload jnb's version). If the name isn't enough, a bounded-tchan (BTChan) is an STM ...
4
votes
3answers
216 views
What will it take for Transactional Memory to be viable?
I've been doing some work on transactional memory and its viability for systems programming (databases, operating systems, servers, etc.). My own experience employing transactions, together with ...
2
votes
4answers
346 views
Are we asking too much of transactional memory?
I've been reading up a lot about transactional memory lately. There is a bit of hype around TM, so a lot of people are enthusiastic about it, and it does provide solutions for painful problems with ...
2
votes
4answers
833 views
Has anyone tried transactional memory for C++?
I was checking out Intel's "whatif" site and their Transactional Memory compiler (each thread has to make atomic commits or rollback the system's memory, like a Database would).
It seems like a ...
1
vote
2answers
317 views
Trying to understand Haskell STM simple things
I got stuck in understanding the concept of atomically in STM.
I illustrate with an example
import Control.Concurrent
import Control.Concurrent.STM
import Control.Monad
import qualified Data.Map as ...