Bits Bender
Bits Bender
Hi, I assume that your application works like a service. Hence, always running and serve requests. I think you should instatiate the smart thread pool only once in a singleton...
The outofmemory exception is out of my scope. I assume you get the exception becuase you get too many requests than you can handle so the backlog explodes. Try to...
How? What's the scenario?
Hi, What is the concurrency of the workgroups? It looks like you have created a live lock (starvation). Assume you have 2 workgroups with concurrency of 1 each: The first...
Just added support to .net 5.0, once .net 6.0 comes out I'll update.
Hi, I read your example and I don't understand why the `stp.WaitForIdle();` should block at all. The work items run 10 seconds each in parallel, you wait for 20 seconds,...
Hi, Sorry I read the timeout wrong. Anyway, if I rephrase it, what you say is that the `stp.WaitForIdle();` doesn't work. I can hardly believe this, because it is used...
Hi, Going to heap corruption is too far fetched, I don't even use `unsafe`. I rewrote your code below to make it testable. From what I understand, if I will...
Which .net framework do you use?