ASP.NET .
.
, CPU/Core.
ASP.NET. .
: ?
1] , ASP.NET?
2] , script?
If you create an asynchronous long page, then each thread will immediately return to the ASP.NET thread pool, which will dramatically increase the performance of your site. This solves problem 1.
Read the advanced parallel task library extensions to find out how you can more efficiently use all the cores for long-term tasks. Most tasks can be divided into subtasks, which can work in parallel. This solves problem 2.
Hope this helps.
source
share