3
votes
2answers
77 views
C# How to make a generic class?
How can I make this generic?
class AtomicReference
{
private Object _value;
public AtomicReference()
{
_value = new Object();
}
public AtomicReference(Object value)
…
0
votes
2answers
43 views
C# how to protect the field of an atomic class?
I'm trying to make an AtomicReference class in C# and I want to keep the field reference protected, but I also need to return the value in the get method:
class AtomicReference
{
private Object …
1
vote
2answers
31 views
NHibernate not throwing StaleObjectStateException when <Version> used and data changed in database
I have an entity mapped in NHibernate with optimistic concurrency control using a SQL timestamp column as the version number. The mapping is like the following:
<class name="Entity" …
4
votes
7answers
132 views
What’s the best way to divide large files in Python for multiprocessing?
I run across a lot of "embarrassingly parallel" projects I'd like to parallelize with the multiprocessing module. However, they often involve reading in huge files (greater than 2gb), processing them …
2
votes
5answers
71 views
Atomically mark and return a group of rows in database
I'm writing a background service that needs to process a series of jobs, stored as records in a sqlserver table. The service needs to find the oldest 20 jobs that need to be worked (where status = …
5
votes
6answers
84 views
Using request.getSession() as a locking object?
I have some java code that gets and sets a session attribute:
Object obj = session.getAttribute(TEST_ATTR);
if (obj==null) {
obj = new MyObject();
session.setAttribute(obj);
}
In order to make …
0
votes
1answer
32 views
Spring best practice for locking domain objects?
Using EJB entity beans you can configure the bean so that when a thread has access to an EJB entity bean, no other threads can access the EJB bean. The container will block other threads until the …
2
votes
2answers
85 views
What is the .NET equivalent of Java’s java.util.concurrent package?
I come from a Java background. I am wanting to learn more about concurrency in .Net and C#. Is there something similar to Java's concurrent utils package?
11
votes
4answers
318 views
How much thread-safety is too much?
I've been reading Java Concurrency in Practice lately – great book. If you think you know how concurrency works, but then most of the time you face the real issues, it feels like SWAG is the most you …
0
votes
2answers
70 views
Method to handle “killed” Java jobs?
Our server web app will handle jobs that are requested by REST API requests.
Ideally if the server dies during a job (ie: plug pulled), the job should resume or restart at startup.
A very …
2
votes
2answers
104 views
When should one use actors to solve a concurrency problem?
I have been looking at the Actor Model for a while now. To me it seems to be just another approach towards concurrent programming with its own upsides and downsides.
It certainly does not guarantee …
1
vote
4answers
82 views
C# - List<> concurrent removing and adding
Hello,
I am not too sure, so i thought i'd ask. Would removing and adding items to a System.Collections.Generic.List<> object be non-thread safe?
My situation:
When a connection is received, …
0
votes
1answer
26 views
How to use PLINQ for IO-bound tasks?
According to the answer to this question, there is no way to effectively use LINQ for IO bound tasks. Is there a way to gain better control, or is LINQ just not suited for such tasks?
0
votes
5answers
139 views
How to handle Java “jobs” synchronously?
We have a set of actions or "Jobs" which we'd like to happen one at a time (not concurrently). Ie: Job A can't happen while B is happening, and you can't have two C jobs running at the same time.
In …
3
votes
7answers
123 views
performance penalty of message passing as opposed to shared data
There is a lot of buzz these days about not using locks and using Message passing approaches like Erlang. Or about using immutable datastructures like in Functional programming vs. C++/Java.
But what …
