Glenner003

573
Reputation
20 views

Registered User

Name Glenner003
Member for 1 year
Seen Dec 1 at 8:38
Website
Location Belgium
Age 31
Searching for quality throughout live
Nov
30
answered (Delphi) Call DLL with function pointer parameter
Nov
4
comment Multithreaded server, bottleneck question
Hi Rennier, I'm sorry your right. It used to say that there were threads created in the .Net documentation, but it actually is relying on the OS async IO calls, which are interrupt steered.
Nov
4
comment Multithreaded server, bottleneck question
reinier, by using Asynchronous calls you just are creating or using threads allowing yours to do something else. In a lot of cases there is nothing useful to do in the context of that thread anyway. Using asynchronous calls is perfect when you will have one worker thread (per CPU) to do it all and thats not always the most performant or manageable way to do things. You have to look at the whole picture before deciding what is the best strategy to follow. In this case it is pretty clear that the OP has chosen to create task specific threads instead of generic worker threads.
Nov
3
accepted Executing Access SQL Query Between Two Databases
Nov
3
answered Executing Access SQL Query Between Two Databases
Nov
3
comment Multithreaded server, bottleneck question
@DotNetWill: The advice to not have more threads than CPU's is only valid when you have cpu intensive threads, when there are other limiting elements such as IO it practical to have more threads as some threads will be waiting for input. But to have a thread per session can become dangerous when lots of clients connect and the cost of switching threads becomes just too much to cope with.
Nov
2
comment Multithreaded server, bottleneck question
Unless you have to do some IO which will block all other sockets from doing something useful. In this case it actually is better to have some threads, but probably not one per connection.
Oct
15
awarded  Yearling
Oct
5
comment Testing a C# sockets based multithreading server
The test-scenario you provide tests only a fraction of the possible issues with a multi threaded server. All possible actions should be tested simultaneously. But I do agree that a making your own load testing system, spread over multiple machines if possible is the way to go for a propriety protocol.
Sep
25
comment MySQL: How to get user with most wins?
I suppose it is a preferential voting system
Sep
25
answered silverlight tcp tunneling / bridging
Sep
24
awarded  Editor
Sep
24
revised C# BackgroundWorker Thread Problem
added 656 characters in body
Sep
24
awarded  Nice Answer
Sep
24
answered C# BackgroundWorker Thread Problem
Sep
24
comment Normalizing from [0.5 - 1] to [0 - 1]
It was the math part of the solution I was solving not the language related part
Sep
24
answered Normalizing from [0.5 - 1] to [0 - 1]
Sep
24
comment Encrypting/decrypting data to database
Why would there be any need to "use" the users password? This seems a weird way to work with useraccounts.