I've decided to make number of threads twice the number of cores. As I thought there are machines which use hyperthreading. I want to use GetLogicalProcessorInformation to return number of CPUs. Of course, I don't think that having more threads can add scalability and performance of my program, because if my program needs more processor resource, windows will give it. Of course, maybe if not very CPU intensive it helps, also, I don't know about scheduling and the API we use in our software written. You need to know how sockets work. I think sockets are similar in windows and unix environment, right? I know unix.. I don't know the number of requests to be listened. I mean the listen() argument. For example for 1000 clients surveying web? I want to use a mix of asynchronous/select/nonblocking read/write with limited no of thread (said above). Should I duplicate the fd & then accept (for example in four threads)? As I understood, zero-copy & windows are impossible in windows.
Do you have any advice for me?
Thanks!