2
votes
1answer
19 views
Prevent Concurrent Editing of a List Item
In Sharepoint MOSS multiple users can edit the same item in a sharepoint list at the same time…the first person to save their edit “wins”.
Is there a way to prevent this, to lock …
5
votes
4answers
86 views
How to properly catch RuntimeExceptions from Executors?
Say that I have the following code:
ExecutorService executor = Executors.newSingleThreadExecutor();
executor.execute(myRunnable);
Now, if myRunnable throws a RuntimeExcpetion, h …
0
votes
2answers
65 views
What was the name of the parallel implementation of Linq (not from Microsoft)
I remember seeing a link about it here where some people claimed it's 1000 times faster than the BCL Linq.
Anyone used it here? Is it true?
Also is Microsoft's PLinq gonna be alo …
0
votes
5answers
46 views
Version number or timestamp for optimistic concurrency?
Would you rather use a version number (that will increment) or a timestamp to check for concurrency problems?
0
votes
6answers
45 views
Launch multiple stored procedures to run ‘in the background’ on SQL Server Express Edition
Is it possible to run multiple stored procedures that run 'in the background'?
The stored procedures must be launched from a single, master stored procedure, in the same way that …
2
votes
3answers
115 views
Is AtomicInteger a good solution to provide a counter for multithreaded app ?
I have an android client which will make Http connections to a server.
The server requires that all Http request provide a monotonically increasing counter in the Http header. e.g …
2
votes
4answers
97 views
Easier concurrency building blocks for Python?
It seems that Python standard library lacks various useful concurrency-related concepts such as atomic counter, executor and others that can be found in e.g. java.util.concurrent. …
1
vote
2answers
63 views
Basics Question: Best Practices concerning Posix Threads and Dynamic Memory
Is it advisable or even possible to have a dynamically growing array of structs fed and read by different concurrently running posix threads? Where do I have to look for best pract …
14
votes
8answers
356 views
Why don’t I see pipe operators in most high-level languages?
In Unix shell programming the pipe operator is an extremely powerful tool. With a small set of core utilities, a systems language (like C) and a scripting language (like Python) yo …
2
votes
1answer
35 views
Concurrency control in Django model
How do I handdle concurrency in a Django model? I dont want the changes to the record being overwritten by another user who reads the same record
0
votes
4answers
64 views
bug thread handling in java
public class Test extends Thread{
public void hello(String s){
System.out.println(s);
}
public void run(){
hello("I’mrunning...");
}//endofrun()
publi …
4
votes
4answers
52 views
Flexible CountDownLatch?
I have encountered a problem twice now whereby a producer thread produces N work items, submits them to an ExecutorService and then needs to wait until all N items have been proces …
6
votes
5answers
75 views
Not thread safe Object publishing
Reading Java concurrency in practice, section 3.5: Claim is raised that
public Holder holder;
public void initialize() {
holder = new Holder(42);
}
Besides the obvious thre …
0
votes
3answers
49 views
Select MAX(field)+1 FROM … Concurrency issues
Hello Im afraid about concurrency on partner application cause in the last days it was having troubles with CRUDS Operations, especially with inserts. So I ran SQL Profiler and not …
3
votes
2answers
72 views
Proper way to access shared resource in Scala actors
In Java, one would synchronize methods or blocks that access a shared resource that is needed in a multi-threaded environment.
I'm wondering how the "Scala Actors" way of doing th …
