1
vote
3answers
69 views
Why is getEntry(Object key) not exposed on HashMap?
Here is my use case, I have an object that is logically equal to my HashMap key but not the same object (not ==). I need to get the actuall key object out of the HashMap so that i can synchronise on …
5
votes
5answers
112 views
C# .Net Concurrency Books?
I have many C# books that all have one small section on Threads and maybe another on Delegates and Lamdas, however, I can't seem to find a book where the primary focus is Concurrency. Can anyone …
1
vote
1answer
17 views
Auto-increment on Azure Table Storage
I am currently developing an application for Azure Table Storage. In that application I have table which will have relatively few inserts (a couple of thousand/day) and the primary key of these …
1
vote
2answers
26 views
What does AtomicReference.compareAndSet() use for determination?
Say you have the following class
public class AccessStatistics {
private final int noPages, noErrors;
public AccessStatistics(int noPages, int noErrors) {
this.noPages = noPages;
…
2
votes
2answers
57 views
Is there a UNIX/pthreads equivalent to Windows manual reset events?
Briefly, a manual reset event is a synchronization construct which is either in the "signaled" or "nonsignaled" state. In the signaled state, any thread which calls a wait function on the event will …
4
votes
3answers
138 views
Scala Concurrency slowing down
Heya,
I'm doing to preface this with the fact I'm a relative Java/Scala newbie so I wouldn't rule out that there is something obvious I'm not doing.
I've got a Scala application which connects via …
2
votes
10answers
295 views
Python vs. Java — Which would you pick to do concurrent programming and why?
Also, if not python or java, then would you more generally pick a statically-typed language or a dynamic-type language?
5
votes
2answers
99 views
Is there an existing solution to the multithreaded data structure problem?
I've had the need for a multi-threaded data structure that supports these claims:
Allows multiple concurrent readers and writers
Is sorted
Is easy to reason about
Fulfilling multiple readers and …
3
votes
4answers
108 views
Why do books on concurrent programming always ignore data parallelism?
There has been a significant shift towards data-parallel programming via systems like OpenCL and CUDA over the last few years, and yet books published even within the last six months never even …
4
votes
4answers
134 views
Memory effects of synchronization in Java
JSR-133 FAQ says:
But there is more to synchronization
than mutual exclusion. Synchronization
ensures that memory writes by a thread
before or during a synchronized block
are made visible …
-1
votes
1answer
116 views
how stackless python can be fast for concurrency ?
stackless python didn't take a good usage of multi-core, so where is the point it should be faster than python thread/multiprocessing ?
all the benchmark use stackless python tasklet to compare with …
2
votes
5answers
113 views
Nested synchronized blocks on interned Strings
The title sounds like there is a lot of problems ahead. Here's my specific case:
This is a travel tickets sales system. Each route has a limited quantity of tickets, and so purchasing the last ticket …
0
votes
3answers
48 views
Linq version of SELECT FOR UPDATE
I'm getting a ChangeConflictException in my web application when the code updates a certain row within a certain table. The best I can tell it seems as though two users are completing the transaction …
1
vote
2answers
50 views
What’s the difference between the message passing and shared memory concurrency models?
Correct me if I'm wrong, but I'm surprised this hasn't been asked before on here ...
1
vote
2answers
54 views
Is it OK to change a model outside the Swing worker thread?
In a "serious" Java GUI app, you'll have models behind many of your GUI elements: A DocumentModel backing a JEditorPane, for example, or a ListModel behind a JList.
We're always told not to make GUI …
