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
835 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 ...
11
votes
3answers
332 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
245 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
617 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 ...
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 ...
1
vote
2answers
319 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 ...