multi threading a web application

前端 未结 5 1653
忘掉有多难
忘掉有多难 2021-02-08 03:57

I know there are many cases when it\'s best to multi thread an application but when is it best to multi thread a .net web Application?

5条回答
  •  遥遥无期
    2021-02-08 04:43

    IMHO you should avoid the use of multithread in a web based application.

    maybe a multithreaded application could increase the performance in a standard app (with the right design), but in a web application you may want to keep a high throughput instead of speed.

    but if you have a few concurrent connection maybe you can use parallel thread without a global performance degradation

提交回复
热议问题