Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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!

share|improve this question

closed as not constructive by Vlad Lazarenko, Brian Rasmussen, talonmies, rds, Beska Jan 15 at 21:11

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

1 Answer

You probably should write a benchmark to find out what number of threads related to number of cores is best for your service.

I made the experience that numThreads = numCores + 1, gives best performance on cpu intensive tasks.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.