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 ...
0
votes
1answer
72 views
Java: Re-engineering open source library's concurrency
As part of some analysis of JVM STM frameworks, I am considering re-engineering an open source library's locking mechanisms to using STM instead.
I would then run some tests to compare performance, ...
2
votes
0answers
82 views
Implementing pi calculus using STM in JAVA
I want to implement `pi-calculus in JAVA. For concurrency I am using the Deuce STM library.
Changing the JAVA syntax would be difficult so I am planning to use annotated variables and generic ...
1
vote
3answers
194 views
What is transactional memory?
I'm confused because from reading the wiki page it seems like just having a checkValidate and commit system for loads and stores. Is the purpose to solve synchronization problems? Is it a software ...
12
votes
2answers
385 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 ...
14
votes
4answers
826 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 ...
5
votes
1answer
443 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 ...
3
votes
2answers
784 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 ...
22
votes
3answers
2k 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 ...
9
votes
3answers
826 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 ...
12
votes
3answers
489 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 ...
5
votes
3answers
489 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 ...
10
votes
1answer
507 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 ...
4
votes
3answers
290 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 ...
3
votes
3answers
404 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 ...
6
votes
2answers
295 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 ...
47
votes
7answers
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 ...
3
votes
4answers
1k 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 ...