Most voted "threadpool" questions
10 questions
Sort by count of
-
3
votes1
answer717
viewsHow the Node thread pool works
Assuming that Javascript, both in browser and Node, is single thread (correct me if I’m wrong), like thread pool works? If, for now, my server does not receive many requests or is in development (it…
-
2
votes1
answer380
viewsRoutine included in Threadpool to run in "background" does not let the application continue running
I have the following code snippet in a method from my ASP.NET MVC application that deals with deleting directories and their files. // efetuo processos de remoção de arquivos do banco de dados await…
-
2
votes1
answer2460
viewsExample of Thread Pool in Delphi
How do I make a pool of Thread, I need to execute a process that contains several records, but I need to send on demand, send 10 and as you release, send more.... how can I do ? I set an example...…
-
2
votes1
answer61
viewsHow does "Threadpool.Unsafequeueuserworkitem" work?
I’ve done some research but I’m not finding a more didactic explanation, since I have no experience with threads.
-
2
votes0
answers39
viewsThreading Problems in Windows Form
I’m trying to implement Threads in my algorithm, however when adding and running my software the Windows Form of it hangs and does not perform any action, can you see anything wrong in the code…
-
1
votes0
answers35
viewsJava Producer and Consumer with same production and consumption rate, despite different speeds
Hello! I’m starting to use BlockingQueue and ExecutorService to implement a Producer-Consumer. Looking at the page https://is.gd/BcIIXK, I removed line 24, and changed line 38 to…
-
1
votes0
answers167
viewsJava Pool Hibernate c3p0
Dear friends, good afternoon. I have a Java solution that’s generating production problems, taking down the bank. After a few changes, I set up a pool using Hibernate c3p0 to manage the number of…
-
0
votes1
answer63
viewsKeeping the context of a List out of Thread
I wanted to upload the list to Thread and then have access to it after the action is over. You have this code but at the end of the thread the list is null; someone would have a tip to help me?…
-
0
votes0
answers24
viewsWhat is the difference between Thread and Threading in python
I’m using Python 3.7.x When I call a thread through the command: t = Thread(target=.... In VS Code shows the thread list in CALL STACK (Call Stack) and runs normal. But when I call through command:…
-
0
votes2
answers107
viewsProblem with C#Threadstatic
I own a system where his authentication keeps a token in a Threadstatic property. It turns out that Monday, he started distributing the tokens incorrectly (after windows server update). I made the…