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

Since one of my scripts got incredibly complex, i was benchmarking the performance of moving some javascript processing logic to the server side in my ASP.NET MVC 4 application.

According to taskmgr.exe, IIS Express only utilizes 13% of my i7. I decided to throw in 3 parallel tasks calculating the fibonacci sequence up to 50 and the IIS express still wouldn't utilize more than 13% of my cpu. Is there anything i can do, so that the application utilizes the full cpu, as it would in a real server ?

share|improve this question
2  
Are you asking about load testing? I don't usually write an application with the intention of getting it to use 100% CPU. – HackedByChinese Nov 17 '12 at 23:05
@HackedByChinese I'm asking about how to allow IIS express to use more than 13% of my CPU. – Dante Nov 17 '12 at 23:06
3  
I doubt that it's a coincidence that 13% is basically one full thread of a quad-core hyperthreaded core i7. I agree with dtech though - I think server fault is a better fit here. – Jon Skeet Nov 17 '12 at 23:08
1  
@rekire: But the OP's entirely reasonable (IMO) point is that if IIS Express is only going to use 1/8th of his processing power, the chances of scaling are significantly reduced... – Jon Skeet Nov 17 '12 at 23:17
2  
As a software tool commonly used by programmers and expressly NOT server software we would actually use in production, this no more belongs on Server Fault than Visual Studio usage questions do. – Iain Nov 18 '12 at 7:53
show 6 more comments

closed as off topic by Michael Petrotta, Quintin Robinson, Steve, Brad Larson Nov 18 '12 at 3:55

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.