Click here to Skip to main content
16,012,843 members

Survey Results

Will you use the parallel extensions for .NET 4.0?   [Edit]

Survey period: 25 May 2009 to 1 Jun 2009

A single core, single proc machine is getting harder and harder to find. Will you be taking advantage of the parallel extensions to take advantage of multiple cores?

OptionVotes% 
I already am726.57
Most likely53248.54
Not sure28125.64
Probably not12711.59
No847.66



 
GeneralVC6 Pin
Dr.Luiji27-May-09 20:55
professionalDr.Luiji27-May-09 20:55 
GeneralStill getting to know the whole API Pin
WillemM25-May-09 10:24
WillemM25-May-09 10:24 
GeneralProbably not, but... Pin
Nemanja Trifunovic25-May-09 5:18
Nemanja Trifunovic25-May-09 5:18 
GeneralRe: Probably not, but... Pin
Kevin McFarlane27-May-09 6:52
Kevin McFarlane27-May-09 6:52 
GeneralRe: Probably not, but... Pin
blakemadden30-May-09 14:51
blakemadden30-May-09 14:51 
Generalavoiding multithread Pin
ed welch24-May-09 22:53
ed welch24-May-09 22:53 
GeneralRe: avoiding multithread Pin
gstolarov25-May-09 4:32
gstolarov25-May-09 4:32 
GeneralRe: avoiding multithread PinPopular
RichardM125-May-09 5:53
RichardM125-May-09 5:53 
GeneralRe: avoiding multithread Pin
harold aptroot25-May-09 6:06
harold aptroot25-May-09 6:06 
GeneralRe: avoiding multithread Pin
Nemanja Trifunovic25-May-09 11:51
Nemanja Trifunovic25-May-09 11:51 
GeneralRe: avoiding multithread Pin
ed welch26-May-09 0:43
ed welch26-May-09 0:43 
GeneralRe: avoiding multithread Pin
harold aptroot26-May-09 2:47
harold aptroot26-May-09 2:47 
GeneralRe: avoiding multithread Pin
ed welch26-May-09 3:29
ed welch26-May-09 3:29 
GeneralRe: avoiding multithread Pin
Nemanja Trifunovic26-May-09 4:03
Nemanja Trifunovic26-May-09 4:03 
GeneralRe: avoiding multithread Pin
Kevin McFarlane27-May-09 1:09
Kevin McFarlane27-May-09 1:09 
GeneralRe: avoiding multithread Pin
Nemanja Trifunovic27-May-09 6:22
Nemanja Trifunovic27-May-09 6:22 
GeneralRe: avoiding multithread Pin
Kevin McFarlane27-May-09 6:46
Kevin McFarlane27-May-09 6:46 
GeneralRe: avoiding multithread Pin
Nemanja Trifunovic27-May-09 11:47
Nemanja Trifunovic27-May-09 11:47 
GeneralRe: avoiding multithread Pin
Kevin McFarlane27-May-09 12:14
Kevin McFarlane27-May-09 12:14 
GeneralRe: avoiding multithread Pin
Jon Rista26-May-09 12:52
Jon Rista26-May-09 12:52 
If you have a highly contentious multithreaded process, then I would say that your using threading incorrectly, and you are probably better off using a serial process instead.

Parallelization is usually applied when you have independant data sets that can be processed without the need to lock and write shared data. When it comes to read-only shared data, then no locking, reader/writer locking or copying read-only shared data locally to each thread can reduce most performance bottlenecks. The Task Parallel library is intended to solve those cases where you have divisable data sets that can be worked in in an independant, safe manner.
GeneralRe: avoiding multithread Pin
Paulo Zemek26-May-09 8:35
Paulo Zemek26-May-09 8:35 
GeneralRe: avoiding multithread Pin
gnjunge27-May-09 20:54
gnjunge27-May-09 20:54 
GeneralRe: avoiding multithread Pin
sucram27-May-09 21:17
sucram27-May-09 21:17 
GeneralIt depends of the end client requirements Pin
Camilo Sanchez24-May-09 21:30
Camilo Sanchez24-May-09 21:30 
GeneralRe: It depends of the end client requirements Pin
Vasudevan Deepak Kumar24-May-09 21:43
Vasudevan Deepak Kumar24-May-09 21:43 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.