Tag: Parallel.ForEach
But why is the iterator operating in multiple-threads
Background Recently, I had a bit of a problem with NHibernate when I was converting some code into parallel tasks. (If you have no interest in NHibernate, then...
Parallelisation talk example – Independent Object Graphs
Parallelised code works best when data is not shared. This example shows a simple piece of parallel code where each task operates independently on its own...
Parallelisation Talk Examples – Parallel.ForEach
These are some code examples from my introductory talk on Parallelisation. Showing the difference between a standard sequential foreach loop and its parallel...
Tasks that create more work
I’m creating a program that parses a web page then follows the links and then parses the next set of web pages to eventually build a picture of an entire site....
