Tagged Questions

0
votes
3answers
13 views

ASP.NET Threading: should I use the pool for DB and Emails actions?

I’m looking for the best way of using threads considering scalability and performance. In my site I have two scenarios that need threading: UI trigger: for example the user clicks a button, the …
0
votes
4answers
45 views

multithreading in c#

hi i am new to threading. my boss gave me a scenario.we have a list of object which is 0f 70gb,we want to load it from a database.it takes time i want to utilize cpu(multi threading) in this scenario …
1
vote
4answers
56 views

Limiting Thread Execution Processor Cycles in Java

Hey, I'm writing an AI-testing Framework for a competition. Participants submit a Bot class which matches a given Interface. Then all the bots play a turn-based game. On every turn, I want to do …
1
vote
3answers
66 views

Strategies for multithreaded application

I might inherit a somewhat complex multithreaded application, which currently has several files with 2+k loc, lots of global variables accessed from everywhere and other practices that I would …
1
vote
3answers
70 views

Building a multithreaded work-queue (consumer/producer) in C++

Hey all, I have the following scenario: I have a single thread that is supposed to fill a container with pairs of integers (in essence, task descriptions), and I have a large number of worker …
8
votes
4answers
110 views

Java - How to know when thread is waiting?

Is there any neat solution of knowing when a thread has been put into wait status? I am putting threads to wait and I notify them when i need it. But sometimes I want to know if a thread is currently …
0
votes
2answers
50 views

right way to create thread in ASP.NET web application

Hello, i'm creating asmx web service and have to create thread to do background IO to refresh system data. What is the right way? I'm not interested to get any results to creating thread. I just want …
0
votes
1answer
47 views

Why would I use “Both” COM threading model instead of “Free”?

According to this article if I register my COM object with either "Both" or "Free" threading model that object must be completely thread-safe. Specifically all accesses to global shared variables must …
1
vote
1answer
33 views

First thread signal is not caught all others caught

Hey all, Quite a specific question, but I was wondering if anyone has had any problems getting the first signal to be caught in a consumer-producer relationship with multiple consumers (HTTP web …
0
votes
2answers
24 views

what is the right way to spawn thread for database IO in asmx web service?

Hello. I have a short lock guarded section in a method (that serves the request entirely) that makes all initializations (etc. log-related). So only 1 thread can be there at time. In this section I …
1
vote
5answers
79 views

C#: Do I have to make ArrayList synchronized if multiple threads only read it

I'm using static ArrayList in a class to store information about non-updatable database fields. I'm planing to initialize it in constructor once (init method call guarded by lock in constructor). …
1
vote
2answers
69 views

C# Thread Programming [closed]

Possible Duplicate: Thread vs ThreadPool What are the benefits of using ThreadPool instead of creating our own?
0
votes
2answers
83 views

Multithreading won’t work as expected

Hello, I have a problem with my program. I wanted it to have two threads, one of them listening for connections, and the other one receiving data from them... Unfortunately, it acts strangely. It will …
11
votes
4answers
317 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
3answers
78 views

C# threading issue

To play a bit with threading, delegates and backgroundworkers, I'm putting together a few small applications, I'm having a bit of trouble with one of them. I've a Windows form, with a textbox, a …

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