Tagged Questions

Software transactional memory (STM) is a mechanism for synchronization in concurrent programming, which can perform groups of memory operations atomically. Using transactional memory (implemented by optimistic synchronization) instead of locks removes risk of deadlock.

learn more… | top users | synonyms

13
votes
2answers
443 views

Difference between TVar and TMVar

I've seen the TVar is a simple container, while the TMVar is the same as an MVar, meaning it has a lock etc, but within the STM monad. I am wondering why would that be necessary, as the idea of the ...
9
votes
1answer
113 views

Optimistic reads and Locking STM (Software Transactional Memory) with C/C++

I've been doing some research on STM (software transactional memory) implementations, specifically on algorithms that utilize locks and are not dependent on the presence of a garbage collector in ...
9
votes
3answers
408 views

Poor performance / lockup with STM

I'm writing a program where a large number of agents listen for events and react on them. Since Control.Concurrent.Chan.dupChan is deprecated I decided to use TChan's as advertised. The performance ...
9
votes
4answers
611 views

How should I make a clojure STM program persistent?

I am writing a clojure program which uses the STM. At the moment I am populating the STM (using refs) at startup from a database, and then asynchronously updating the database whenever a dosync ...
8
votes
1answer
88 views

Haskell STM check function returning undefined

Is there a good reason why the check function in the Contol.Concurent.STM library has type Bool -> STM a and returns undefined on success rather then having the type Bool -> STM ()? The way it ...
8
votes
2answers
328 views

Why does Scala fail to instantiate a Companion Object?

I am new to Scala and Akka so forgive me if this is a newb question, but I can't find the answer anywhere else... For the record I am using Scala 2.9.0-1 and Akka 1.1.3 and have included my SBT ...
7
votes
2answers
120 views

Using STM and Database transactions together

I have been using Haskell's STM library and I really like the ability to compose transactions and the general "you-can't-get-this-wrong" nature of STM. For good reason, STM does not allow IO actions ...
7
votes
2answers
320 views

Experiences with Clojure STM for large datasets?

I need to make a decision about whether to use STM in a Clojure system I am involved with for a system which needs several GB to be stored in a single STM ref. I would like to hear from anyone who ...
6
votes
1answer
133 views

How safe is `unsafePerformIO (newTVarIO 0)`?

I've noticed this idiom in Data.Unique: uniqSource :: TVar Integer uniqSource = unsafePerformIO (newTVarIO 0) {-# NOINLINE uniqSource #-} Is it guaranteed to only run once?
5
votes
1answer
139 views

Haskell: thread blocked indefinitely in an STM transaction

Is there any way to increase a time interval, on the basis of which the RTS decides that thread has blocked indefinitely in an STM transaction? Here is my code: import Control.Concurrent (ThreadId) ...
5
votes
1answer
232 views

scala/akka/stm design for large shared state?

I am new to Scala and Akka and am considering using it to solve a problem. Suppose I have a calculation engine (that searches for a solution). I'd like to parallelize that search both across cpus and ...
5
votes
1answer
129 views

Can Clojure's STM's history of values be accessed?

Given that the STM holds a history of say 10 values of refs, agents etc, can those values be read ? The reason is, I'm updating a load of agents and I need to keep a history of values. If the STM is ...
5
votes
3answers
1k views

Clojure STM ( dosync ) x Java synchronize block

What i the difference between Clojure STM ( dosync) approach and Java synchronize Block ? Im reading the code below from "The sleeping barber" problem. ...
5
votes
4answers
354 views

How do you implement Software Transactional Memory?

In terms of actual low level atomic instructions and memory fences (I assume they're used), how do you implement STM? The part that's mysterious to me is that given some arbitrary chunk of code, you ...
4
votes
1answer
112 views

TransactionalMap vs SynchronizedMap

When should one prefer Akka TransactionalMap over regular immutable map mixed in with SynchronizedMap and vice versa? (Or am I comparing apples to oranges here?)
4
votes
3answers
107 views

Readers-writers using STM in Clojure

There is the following version of readers-writers problem: multiple readers and writers, 2 or more readers can read simultaneously, if a writer is writing no one can read or write, it is preferred if ...
4
votes
3answers
155 views

STM and alter in clojure

I am working through the Programming Clojure book. While explaining alter and the STM, they say that if, during an alter, Clojure detects a change to the ref from outside the transaction, it will ...
3
votes
2answers
519 views

STM hash library for C (glib?)

I'm looking for some C library that includes STM-style (Software Transactional Memory) hash maps, but I had no luck so far. It would be great if it was based on glib / gobject, but it's not that ...
2
votes
1answer
97 views

Testing STM functions purely

I've recently started using STM for some bits in a project of mine, but I'm having trouble figuring out how to test it. I have no IO in these functions and was hoping I could write QuickCheck ...
2
votes
1answer
99 views

get variable in catch clause

Hello I need to write function than will send and receive messages over tcp and auto reconnect if connection is broken. Messages is taken from STM Channel f ch a b = h <- connectTo a b ...
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 ...
1
vote
1answer
62 views

Proguard crashes on Scala code depending on Multiverse STM

I'm trying to optimize some Scala code which relies on the Multiverse STM (0.6.2) with Proguard. I'm using the STM in conjunction with akka. As I try to do so, I get the following error: Unexpected ...
1
vote
1answer
101 views

Disable Logging for Akka STM (Multiverse)

I am using akka stm and when my application starts it prints out (to the stderr): Okt 20, 2011 10:17:10 AM org.multiverse.api.GlobalStmInstance <clinit> Information: Initializing ...
1
vote
1answer
102 views

Using the Par monad with STM and Deterministic IO

I'm in the process of writing a report for an assignment in which I implemented a concurrent multicore branch and bound algorithm using the STM package and there was an issue I've come up against. ...
1
vote
1answer
129 views

Software Transactional Memory + Spring

Is it possible to integrate Spring with Software Transactional Memory so that I can rollback all Objects and DB transactions together on method throwing Exception. I need possibilities of Spring+Deuce ...
0
votes
1answer
129 views

Akka, Thread Dispatchers, Agents Best Practice

I've dabbled in Scala for a while, and have studied Akka from afar, and am finally plunging in. The FSM trait sealed the deal for me. What concerns me is that I may have conceived of how data would ...
0
votes
5answers
327 views

how i search textbox value to datagridview in c sharp

string search = textBox1.Text; int s = Convert.ToInt32(search); string conn="Provider=Microsoft.ACE.OLEDB.12.0;Data Source=E:\\Data.accdb"; string query="SELECT ...
0
votes
1answer
239 views

elf file thinks its small, but its large! can not generate .bin and .hex files

I am working on migrating a project from Kail to Gcc. Makefile http://www.copypastecode.com/73860/ .ld file http://www.copypastecode.com/73856/ I have a Makefile and a platform.ld script and some .c ...
0
votes
2answers
115 views

stm implementations issues

Hey guys, At some point i think that these stm implementation ( multiverse which i have used a little bit... ), are over-hyped. Because at some point they uses CAS which is providing them atomicity of ...
0
votes
1answer
38 views

What run-time issues are present when using thread-level memory-protection/paging?

Okay, so we support per-process memory paging/protection today. I've been wondering for years what sort of benefit is gained by offering page-level protections to what is arguably the smallest ...