Technology, Web & Business Forum

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++


Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 08-18-2009
Junior Member
 
Join Date: Aug 2009
Posts: 3
Default Advantages and Disadvantages of Using Multithreading in .NET

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
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


All times are GMT -5. The time now is 07:06 PM.