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 ...
1
vote
2answers
38 views
what is the point of .join in Ruby threads?
Lets take this code from this question:
Ruby multiple background threads
and add a line:
require 'thread'
def foo(&block)
bar(block)
end
def bar(block)
Thread.abort_on_exception=true
...
0
votes
2answers
39 views
Ruby multithreading Performance issues
I am building Ruby application. I have a set of images that I want to greyscale. My code used to be like this:
def Tools.grayscale_all_frames(frames_dir,output_dir)
number_of_frames = ...
0
votes
0answers
27 views
Multiple kernels concurrency problems + MemcpyToArrayAsync() incorrect stream
I am currently developing an application in CUDA and I have some questions regarding to concurrency. The problem is I can not achieve a concurrent execution of two kernels. I have checked the card is ...
3
votes
0answers
62 views
PPL Container performance
I am writing a Server application which takes data from multiple sources at once and stores it in it's internal database (currently a std::set).
I have just been looking at Microsoft's ConcRT PPL ...
-7
votes
3answers
61 views
Java uses how many processors available in OS? [closed]
This is a basic question, but want to get my doubt cleared.
If any OS is multi-processor, then JVM uses all of them or one of them?
I am asking this because in a single processor, only one thread will ...
0
votes
0answers
33 views
FASM concurrent increment and CPU load
I'm experimenting with FASM in order to improve my understanding of concurrency. I've created a program that has two threads each making some number of lock xadd. I run it on my Win7 64bit on i7 and ...
0
votes
1answer
17 views
PHP Concurrent Requests Lead to Multiple Sessions
I am working on a updating an existing visitor tracking script on a high traffic website. I noticed that there is a problem not with the script itself, but with what happens when there are multiple ...
0
votes
2answers
22 views
Anything recent in Concurrency in the JS ecosystem ? Last was 4 months ago
**
Is there anything like Actors in JavaScript and its ecosystem (Node, CoffeeScript, Backbone etc) ?
With the widespread use of AJAX it seems perfect for asynch message-passing.
4
votes
2answers
77 views
why OS processes seems faster than threads in java [closed]
I developed a multi-thread java application which using thread to process a batch of work. I have a main thread which dispatching the works to different threads. All work fine.
Now I have changed the ...
0
votes
2answers
22 views
several concurent URL calls
How can I make, say N url calls in parallel, and process the responses as they come back?
I want to ready the responses and print them to the screen, maybe after some manipulations.
I don't care ...
2
votes
1answer
37 views
Making a method wait button press
My method has to return AFTER the user presses a Button. After some researches, I thought this would work:
The method itself:
public Aluno getAlunoFromUser() throws InterruptedException
{
...
0
votes
2answers
33 views
How to set a threshold for Fork/Join Algorithm in Java?
How can I figure out an adequate threshold for a Fork/Join Algorithm? For now I arbitrary play with some thresholds and check the result.
But is there any guideline or best-practice how to set a ...
0
votes
1answer
36 views
How do I run a thread run() inside of the GUI's actionPerformed() method?
This is my first time doing multi-threading and I'm kind of stuck on how to make two threads, "Reader" thread and "Writer" thread execute only when the JButton "jbStart" is clicked? I can't put the ...
13
votes
0answers
302 views
concurrent garbage collection for a c++ graph data structure
I have a directed graph data structure used for audio signal processing (see http://audulus.com if you're curious).
I would like graph edges to be strong references, so in the absence of cycles, ...
1
vote
1answer
20 views
Database locked in WAL mode with only readers
Using System.Data.Sqlite 1.0.86.0 (including SQLite 3.7.17) in Write-Ahead Logging mode, I'm experiencing database locks while reading concurrently, which shouldn't be the case if I understand WAL ...
-1
votes
1answer
37 views
Threadpool Execution doubts
I have a thread pool executor configured as below:
public class ThreadPoolExecutor {
int poolSize = 1;
int ...
0
votes
2answers
24 views
Does happen-before in Java new memory model also apply to the member of a object which is declared as volatile?
In the new Java memory model, any write to a variable is guaranteed to be completed before the next thread read it.
I wonder if this is also the case for variables that are member of this object.
...
3
votes
1answer
42 views
Named semaphore or flock which is better C linux
I am trying to create a shared memory which will be used by multiple processes. these processes communicate with each other using MPI calls (MPI_Send, MPI_Recv).
I need a mechanism to control the ...
1
vote
1answer
64 views
Different results for N>1 goroutines (on N>1 Cpu:s). Why?
I have a test program that gives different results when executing more than one goroutine on more than one Cpu (Goroutines = Cpus). The "test" is about syncing goroutines using channels, and the ...
0
votes
1answer
14 views
Cocos2d and concurrency: how to properly stop animations between scenes
I got a GameScene (here called ShooterScene) and I do exit to a MainMenu. I do use sprite sheets which I load in a texture cache. There are various animations going on (on background elements, ...
0
votes
0answers
33 views
Issues with TryAdd performance in a ConcurrentDictionary
I have a ConcurrentDictionary that I use to store valuation results in one of my classes. This dictionary is instantiated when the class is.
I use a Parallel.ForEach to perform my valuations, which ...
0
votes
2answers
37 views
NodeJS - How to handle “listen EADDRINUSE” when accessing external process
I'm using phantomJS for printing PDF, with phantomjs-node module. It works well but when I try to create several files at once, it throws an Unhandled error "Listen EADDRINUSE.
I assume this is ...
0
votes
1answer
10 views
Connection Pooling using Apache common DBCP And DBUtils and concurrency
I'm investigating concurrency when doing multiple queries in different threads.
I am using Apache DBCP and DBUtils not because I want to complicate my life but because they should guarantee that the ...
2
votes
2answers
34 views
Does casting a CopyOnWriteArrayList to a List cause it to lose its concurrency guaranties?
The above (title) is my main concern. And the case is
public class MyClass{
CopyOnWriteArrayList<Stuff> min;
...
public List<Stuff> get(){
return min;
}
}
Is the resulting ...
2
votes
1answer
61 views
Java Concurrency: Find task failed in a pool of tasks
Following SSCCE shows fetching records from a server(say). ExecutorService is used to create a ThreadPool of 2 threads and I have invoked all these threads with Timeout of 3 seconds.
Intentionally I ...
1
vote
3answers
55 views
synchronized statements java — what exactly do they do vis-a-vis non synchronized code?
Do synchronized statements in java protect against modification of the object synchronized on in other threads which are accessing the thread WITHOUT synchronized statements? I am new to ...
0
votes
2answers
146 views
Map concurrency - modification exception
The below code is executed by a thread pool. First, the Map was not concurrent so I have changed that but I still get modification exception on the second line.
What changes should I make in order to ...
0
votes
0answers
18 views
node/mongo/socket.io: synchronizing clients
I have socket.io clients with a MongoDB document backing each of them. When a certain request arrives, I have to push the request to a number of clients. These notified clients can accept it or reject ...
1
vote
1answer
31 views
Three types of threads attempting to access critical section
For my application I need to be sure, that in critical session only one type of thread is processing. Number of threads for given type is not specified and could be "large". I've came with simple ...
5
votes
3answers
72 views
Standard Java pattern for wrapping a timeout around an errant process
I'm using a 3rd party function (say runThird()) that has a tendency to loop indefinitely and has no timeout facility built in. However, I can kill it (killThird()). Is there a proper way to do this ...
1
vote
2answers
89 views
What is Event Driven Concurrency?
I am starting to learn Scala and functional programming. I was reading the book !Programming scala: Tackle Multi-Core Complexity on the Java Virtual Machine". Upon the first chapter I've seen the word ...
0
votes
2answers
47 views
Concurrent CPLEX processes a lot slower than single process
I am modelling and solving a linear program (LP) using single-threaded CPLEX with Java (under Linux). My aim is to solve multiple small LPs in parallel threads, ideally with each core independently ...
0
votes
3answers
70 views
Java Synchronized Method on Static Variable
I'm doing a college class on Java concurrency and was recently given a simple task to create 5 threads numbered from 1 to 5, then get each thread to write its thread number to a static variable in the ...
-1
votes
2answers
31 views
JFrame doesn't show when music is playing?
I am using the mp3plugin.jar library and my music works great. The only problem is that when my program starts the JFrame doesn't show. Before I added the music, it worked perfectly.This is my code ...
0
votes
1answer
40 views
SQL Server 2005 Stored Procedures running concurrently causes delays
I have a stored procedure in my system that runs long already which is somewhat expected since it deals with lots of data and an export process. For arguments sake the procedure will run about 10 ...
0
votes
1answer
32 views
Notify()/NotifyAll() all before exiting synchronized block [duplicate]
Consider this portion of code:
synchronized(object) {
....
object.notify(); // or object.notifyAll();
// do something else
doSomethingElse();
}
Do the Java Language ...
3
votes
1answer
67 views
Atomic 128-bit Memory Mode Selection
Using gcc, my code has an atomic 128-bit integer than is being written to by one thread, and read concurrently from 31 threads. I don't care about operations on this variable's synchronization with ...
1
vote
1answer
29 views
Test script for transaction concurrency for postgresql
I would like to test some variants of transaction concurrency in PostgreSQL and for that I need a script which would force two transaction to start at exactly the same time. Something that does not ...
7
votes
1answer
85 views
parBuffer evaluation not giving expected speedup
I have a haskell function I want to evaluate with exact intermediate results:
f 0 x = 0
f n x = let tmp = f (n-1) x in
tmp + (x-tmp^2)/2
Because of the (^2) the complexity grows ...
4
votes
4answers
67 views
How to implement threadsafe list?
I want to implement a threadsafe list, but the thread safety has to be ensured on the whole block of operations, not only on a single operation (eg. add, remove etc.) The use case should look like ...
0
votes
0answers
12 views
How to manage concurrency while updating Oracle View through EF in an MVC project?
My MVC 4 application is using Entity Framework 5 as its ORM.
And an Oracle 10 database is used as its back-end.
MVC Views are displaying data from Oracle DB Views, and I have no control over database ...
1
vote
1answer
39 views
Java IO Thread Saftey
I use MappedByteBuffers to achieve thread safety between readers and writers of a file via volatile variables (writer updates position and readers read the writer's position) (this is a file upload ...
0
votes
1answer
22 views
How to create concurrent databses, So that when one database is down other can work…? [closed]
I have a local application running on LAN. Some times the system having database get shutdown. In such a scenario how to keep application working. Can i have two concurrent database. I am using ...
-2
votes
0answers
29 views
How does an airline reservation system work concurrently [closed]
An airline reservation database needs to work in a concurrent manner because it is a multi-user database. Now if someone wants to reserve a seat on a plane, between the time he reads the number of ...
0
votes
0answers
47 views
Specifying reduce functor for mappedReduce
I am using QtConcurrent to run a certain task in parallel. However, i have run into a problem when i trued to change to using mappedReduced instead of map.
Here is the code i used:
struct ...
0
votes
0answers
30 views
Hibernate Stale State Exception while deleting from DB
I am using Hazelcast with Mysql and ofc hibernate for connectivity. I have a multithreaded application, which is processing data and then tries to remove from both hazelcast and db.
But after some ...
0
votes
0answers
12 views
can you share an Outlook storageitem or use an AppointmentItem with concurrency?
I'm working on an vsto add-in for outlook that creates a custom all-day appointment that allows multiple users to edit the work for that day.
I have successfully stored the data in the body of the ...
0
votes
1answer
63 views
Clojure STM: non consistent remove
Consider a very simple hashtable, with the following structure:
(defn make-hashtable
[cap]
(let
[tablesize (int (Math/ceil (* cap 1.30)))]
{:tablesize tablesize
:capacity cap
...
7
votes
1answer
252 views
Performance of threads in c++11
I am interested in the performance of mutex and message passing in the latest gcc with threads based on pthreads and a Ubuntu development environment. A good generic problem for this is the dining ...
1
vote
0answers
57 views
Reading output from multiple threads and writing to a file [migrated]
There are 10 threads and I have 15 tasks. Now I have submitted all these tasks to these threads. I need to write all these threads output to a file which I was not successful.
I am getting output by ...




