In computer science, concurrency is a property of systems in which multiple computations can be performed in overlapping time periods. The computations may be executing on multiple cores in the same chip, preemptively time-shared threads on the same processor, or executed on physically separated ...

learn more… | top users | synonyms (2)

0
votes
0answers
12 views

Error in concurrent reading/saving of object in Transactional method

Facing problem in saving data with concurrent request thread. detail are as below: Spring 3.0.5 Tomcat 1.6 Hibernate 3 Simulating the issue through sample application: DB Detail: user ...
-1
votes
1answer
28 views

Questions about django's user API (user id)

I'm looking at Django's built in implementation of users, and have a few questions What's the right way to identify users? Username are unique - so that could be an identifier, but they're easily ...
0
votes
0answers
25 views

Atomic conditional-update in Django

So I have two Models: class Unit(models.Model): name = models.CharField() class Session(models.Model): unit = models.ForeignKey(Unit) startDateTime = models.DateTimeField() endDateTime = ...
1
vote
2answers
72 views

Are map() and reduce() appropriate for concurrent processing in Go?

Coming from a python background, and just starting with Go, I found myself looking for the equivalent of the map() and reduce() functions in Go. I didn't find them, so fell back on for loops. For ...
0
votes
1answer
41 views

Android dialog pause activity

I want to show dialog and it will pause activity . To wait user turn on the GPS . After that it can query database to fill the list . The picture below description what I want to do And ...
1
vote
4answers
81 views

Future with Timeout in Scala

Suppose I have a function, which invokes a blocking interruptible operation. I would like to run it asynchronously with timeout, i.e. I would like to interrupt the function when the timeout is ...
5
votes
1answer
33 views

Methods ready and result of Future in Scala cannot be called directly

I noticed that methods ready and result of scala.concurrent.Future cannot be invoked directly. When I call them in REPL I get an error. Thus I have to call Await.ready and Await.result instead. It ...
0
votes
1answer
16 views

QuantLib Multithreading/Concurrecy

I am fairly new to QuantLib and don't yet know all the ins and outs of the source but I was trying to test out a simple multi threaded calculation of several option's NPVs and am getting runtime ...
1
vote
3answers
41 views

invokeAll vs CompletionService

I am having a class that is accessed by multiple threads, each thread request one method of this class. Each method in turn performs number of Callables. This class uses threadPool from ...
2
votes
2answers
43 views

ExecutorService InvokeAll Progress Bar

I have an ExectorService and the following code, everything is working fine with the futures and the concurrency. However, when I try to update my progress bar from SomeClass(), it seems to only ...
-1
votes
0answers
16 views

Rendering in Applet doesn't work

I made a little program to test Applets. Sadly, it doesn't work completely. The Application as Client-Program renders perfectly. Also, trying it using the Appletviewer works fine. But when uploading ...
4
votes
1answer
72 views

Java producer-consumer with stopping condition

I have N workers that share a queue of elements to compute. At each iteration, each worker removes an element from the queue and can produce more elements to compute, that are going to be put in the ...
0
votes
3answers
68 views

Concurrency With Static Variables

Maybe its too late, but I have a static class for the sake of global variables in my winforms application. Now, I am realizing this may cause issues. The question is: "With the static class variables ...
2
votes
2answers
54 views

Wait for the termination of n goroutines

I need to start a huge amount of goroutines and wait for their termination. The intuitive way seems to use a channel to wait till all of them are finished : package main type Object struct { ...
0
votes
4answers
52 views

Are channels passed by reference implicitly

The go tour has this example for channels: http://tour.golang.org/#63 package main import "fmt" func sum(a []int, c chan int) { sum := 0 for _, v := range a { sum += v } c ...
0
votes
2answers
32 views

`pthread_mutex_t`, `sem_t` in a `std::map`

Basically I'm maintaining a set of states for a bunch of objects: #define SUBSCRIPTION_TYPE int std::map< SUBSCRIPTION_TYPE , bool > is_object_valid; And I need to protect each element in ...
-2
votes
0answers
16 views

Is the shared object being published safely?

Please have a look at the main() method of the following producer consumer solution : http://java67.blogspot.in/2012/12/producer-consumer-problem-with-wait-and-notify-example.html. It doesn't look ...
-2
votes
0answers
31 views

How to check multiple thread pass same data to method?

Suppose there are three threads and there is one method which takes number as input and prints number. If threads passes same number, number should print one time and if different numbers provided as ...
0
votes
2answers
26 views

Merging several ByteArrayOutputStreams into one FileOutputStream

I am splitting up a computation among eight threads and writing the results to a file, as follows: 1a. Each of seven threads processes its input and writes its output to its own ...
1
vote
1answer
40 views

“Thinking In Java” concurrency CloseResource.java

I'm reading the book 《thinking In java》(Fouth Edition) and find a question about the source code concurrency/CloseResource.java . When the socketInput.close() method throws an InterruptedException, ...
2
votes
1answer
50 views

Is it possible to atomically load and store on X86 processors?

Can this be done atomically? void load_and_store(int* dst, int* src) { int data = *src; *dst = data; } If atomic store has to be done with XCHG [addr], EAX, I would have to load the data into ...
1
vote
4answers
106 views

Create Future with function without starting it

This is a follow-up to my previous question Suppose I want to create a future with my function but don't want to start it immediately (i.e. I do not want to call val f = Future { ... // my function}. ...
0
votes
0answers
22 views

Play Framework Sessions, Cache, and Java Collections

I'm creating a web service (in Java using the Play framework) which needs to keep track of some data across requests by user session. To accomplish this, I generate a unique token for each session ...
0
votes
1answer
51 views

What is the difference between CountDownLatch, CyclicBarrier and Phaser Concurrent classes?

What is the difference between CountDownLatch, CyclicBarrier and Phaser Concurrent classes ? These classes works as a synchronizer. How they are different from each other?
12
votes
3answers
277 views

Degrading performance when increasing number of cores

My mac is armed with 16 cores. System.out.println(Runtime.getRuntime().availableProcessors()); //16 I'm running the code below to see the effectiveness of utilizing my cores. The thread ...
2
votes
1answer
68 views

Java dining philosophers monitors

I have a problem in my Java code that should simulate dining pholosophers problem, which is described here: http://en.wikipedia.org/wiki/Dining_philosophers_problem I want to output the current state ...
2
votes
1answer
44 views

Inconsistency in repeatable read

http://www.postgresql.org/docs/9.2/static/transaction-iso.html The Repeatable Read mode provides a rigorous guarantee that each transaction sees a completely stable view of the database. However, ...
3
votes
4answers
69 views

MultipleThreads and synchronization Thread Visibility

Say I have a Thread T1. I create an object in that thread e.g. Dog and set some properties (name, color) etc. I then thread another Thread T2 (from T1) and pass the Dog object to it. After this ...
1
vote
0answers
18 views

Plotted ab results of node, cluster and nginx, odd results? [migrated]

I did a test with ab -n 10000 -c 1000 against node.js with different configurations, each returning the string Hello World!. Results seems odd to me. X axis is the number of requests, y is the ...
0
votes
1answer
28 views

Concurrent kernel execution and OpenCL device partition

Recently I needed to do some experiments which need run multiple different kernel on AMD hardware. But I have several questions before starting to coding hence I really need your help. First, I am ...
3
votes
2answers
65 views

Simple web server when high-concurrency is met

This is not a homework, but an interview question that I found on the web. The java code is: public class SimpleWebServer{ public static void handleRequest(Socket c) { //Process the request ...
0
votes
2answers
51 views

Checking whether all tasks in ThreadPoolExecutor are completed

How can I check whether all tasks submitted to ThreadPoolExecutor are completed? New tasks can be added from previously submitted tasks, so I can't call shutdown followed by awaitTermination nor ...
2
votes
0answers
29 views

Concurrent and In Order Downloading chunks from 2 servers - Android

I am working on an Android app which purpose is to download chunks(parts of a video file) from 2 servers, append them in order(into a main video file) after each one is downloaded and finally play ...
0
votes
0answers
66 views

why does my multithreaded application hang when trying to join? [closed]

I have created an application using boost threads, this application works fine on one machine, however on another it hangs after attempting to join. Here is a rough pseudocode of what is happening: ...
4
votes
0answers
59 views

How to run multiple Selenium Firefox browsers concurrently?

Trying to run multiple processes concurrently on the same machine, which use Selenium. What would happen is something like this: python my_selenium_process1.py & python my_selenium_process2.py ...
0
votes
3answers
90 views

How to add callbacks to Future in Scala?

I saw an example here: val fut = Future { ... // my body function } // my body function starts here fut onComplete { ... // my callback } Looks like I may add the callback after the completion of ...
2
votes
2answers
50 views

Thread Safety - declaring a new thread inside method local block

I am curious if the following code is thread-safe: public static void methodA () { // given that mutableObject is not thread-safe (no lock/synchronization used) MutableObject mo = new ...
1
vote
1answer
43 views

How to find find Future implementation in scala.concurrent?

I am trying to understand what exactly happens, when I call val f = scala.concurrent.Future {... // my body function } The code of object Future defines apply methods as follows: def ...
0
votes
4answers
49 views

Concurrent Modification Exception in LinkedList

I'm looking for a good way, to build a limited linked list. If the linked list is "full", the first element will be removed and the new one will be added. So I always have the "newest" "limit-size" ...
0
votes
0answers
8 views

peterson's algorithm -what is the flag arr and turn

I try to understand what is the meaning of flag[i] and turn and what is the meaning of what is inside the while. //flag[] is boolean array; and turn is an integer flag[0] = false; flag[1] = ...
0
votes
0answers
79 views

Immutable collection (an example in book of scala in depth)

In the book, it has the following example, it only sync the insert, but didn't sync lookup.I knew the currentIndex will point to a different object after insert, but is the operation of pointing to a ...
1
vote
2answers
34 views

SWT: Is it possible to move multiple widgets at the same time?

I successfully implement an animation for widget based on user desired position and duration. However, if I set two widgets to move, they can only animate one at a time. When I start moving widget A ...
0
votes
2answers
54 views

Modeling synchronization using actors

I'm trying to understand how to solve the dining philosophers problem using actors. In case you don't know, the crux of the problem is that a thread needs to obtain two locks before it can ...
3
votes
1answer
46 views

Making variable volatile in subclass, in Java

I've come across the following situation: public class Foo { private boolean valid; ... } public class ConcurrentFoo extends Foo { ... } Since ConcurrentFoo is a subclass to be ...
3
votes
2answers
82 views

How to handle synchronization of frequent concurrent read/writes on a Java ArrayList

I have a Java class that contains an ArrayList of transaction info objects that get queried and modified by different threads on a frequent basis. At a basic level, the structure of the class looks ...
0
votes
1answer
26 views

Do I need an additional lockfile when locking access to a file in bash

I am currently looking at locks in Bash. In the script I am working with I have a file that may be used concurrently by multiple invocations of the same or other scripts. In order to synchronize the ...
0
votes
0answers
30 views

How does SQL Server Express concurrenct connections work?

I would like to know how the concurrency works in SQL Server Express database. The reason I am asking this is because testing my database to be used to create an email server which can send multiple ...
0
votes
0answers
48 views

Gearman callback issue in C

I'm trying to write a worker and a client in C for Gearman. I started using the examples provided with the Gearman distribution (gearmand-0.10). In particular I'm using reverse_worker.c and ...
0
votes
1answer
31 views

Java: Fine grain locking for requests?

I'm trying to create a fine grain locking mechanism for the following scenario: I have a data store with many serialised Cache objects inside it. Each Cache belongs to a certain person, group or ...
2
votes
2answers
62 views

Concurrently merging many sorted arrays

I am currently working on a program to sort strings concurrently. My program takes in a file, reads each line of the file into an array, and splits the array of strings into smaller arrays of strings. ...

1 2 3 4 5 126