Tagged Questions

2
votes
2answers
115 views

Scala bug with immutable Map in concurrent program?

I've written a Monte Carlo player for the board game Nine Men's Morris. Everything is basically immutable. The program involves lots of futures (hundreds) and a lot of modifying immutable Maps. …
7
votes
7answers
889 views

How do I optimize for multi-core and multi-CPU computers in Java?

I'm writing a Java program which uses a lot of CPU because of the nature of what it does. However, lots of it can run in parallel. When I run it, it only seems to use one CPU until it needs more then …
5
votes
12answers
722 views

MS Access (MDB) concurrency

For a small project I need to utilize a simple database with very light requirements: few tables, no more than few thousands of records in total, 2 or 3 users. I am working in .NET environment. As a …
2
votes
1answer
44 views

dedicated thread for io_service::run()

I want to provide a global io_service that is driven by one global thread. Simple enough, I just have the thread body call io_service::run(). However, that doesn't work as run (run_one, poll, …
1
vote
1answer
42 views

concurrency in hibernate

I have a servlet that does some work for user and then decrement user's credit. When I watch user's credit in the database in real time, if there are many concurrent requests from the same user, the …
0
votes
2answers
41 views

Java: SingleThreadScheduledExecutor & java.util.concurrent.RejectedExecutionException

Hello. I am having this problem, I have private ScheduledExecutorService executor = Executors.newSingleThreadScheduledExecutor(); and task which is created every 50 millliseconds: …
2
votes
5answers
134 views

Java: Large collection and concurrent threads

Hello. I am facing this issue: I have lots of threads (1024) who access one large collection - Vector. Question: is it possible to do something about it which would allow me to do concurrent actions …
2
votes
2answers
88 views

Java: Timer and thread it creates

Hey. I have this question: I have a timer. With scheduleAtFixedRate it creates a new Timer task. In that timer task there is certain code, which may take a while to complete. How can I make sure …
2
votes
3answers
222 views

Is this java code thread-safe?

I am planning to use this schema in my application, but I was not sure whether this is safe. To give a little background, a bunch of servers will compute results of sub-tasks that belong to a single …
1
vote
2answers
193 views

Native threads in Ruby 1.9.1, whats in it for me?

So, Ruby 1.9.1 is now declared stable. Rails is supposed to work with it and slowly gems are being ported to it. It has native threads.... and a global interpreter lock. Since a GIL is in place, do …
1
vote
5answers
58 views

How do I synchronize to prevent a java.util.ConcurrentModificationException

Hello I have program consisting of a number of classes. I have a problem with the interraction of two of the classes - WebDataCache and Client. The problem classes are listed below. WebData: This is …
6
votes
8answers
710 views

Return collection as read-only

I have an object in a multi-threaded environment that maintains a collection of information, e.g.: public IList<string> Data { get { return data; } } I currently have return …
0
votes
3answers
57 views

Java mutual exclusion

Hi all, i just have a quick question about concurrent programming in Java. for example, i have a NxN matrix, and there is a corresponding thread for each row of the matrix, if there is no interaction …
2
votes
3answers
206 views

Shutting down worker threads gracefully

I don't understand why in this implementation stopped is not volatile - If a different thread updates this will it be reflected correctly? Secondly is testing (!Stopping) atomic? using System; …
0
votes
8answers
370 views

Python, Ruby, Haskell - Do they provide true multithreading?

We are planning to write a highly concurrent application in any of the Very-High Level programming languages. 1) Do Python, Ruby, or Haskell support true multithreading? 2) If a program contains …

1 2 3 4 5 47 next
15 30 50 per page