You are here: Technology, Web & Business Forum
: Web Development
: Programming
:
Advantages and Disadvantages of Using Multithreading in .NET
|
Welcome to the Technology, Web & Business Forum forums. You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today! If you have any problems with the registration process or your account login, please contact contact us. |
| Programming Discuss programming languages such as .NET, PHP, PERL, ASP, ColdFusion, C++
|
![]() |
|
|
LinkBack | Thread Tools | Display Modes |
|
|||
|
|||
Despite improving your application's performance, and avoiding unresponsive user interface, multithreading has the following disadvantages:
1. There is a runtime overhead associated with creating and destroying threads. When your application creates and destroys threads frequently, this overhead affects the overall application performance. 2. Having too many threads running at the same time decreases the performance of your entire system. This is because your system is attempting to give each thread a time slot to operate inside. 3. You should design your application well when you are going to use multithreading, or otherwise your application will be difficult to maintain and extend. 4. You should be careful when you implement a multithreading application, because threading bugs are difficult to debug and resolve.
__________________
r4 card |



Linear Mode
