I just watched the last Channel 9 vid on the upcoming parallel extensions to .NET. How would you use this in a web app? I’m specifically thinking of using the parallel Linq extensions against a SQL db. Would this makes sense to use as a way to speed up your data access layer in a multi-user server app? What are the issues (aside from the obvious thread safety issues using static collection types)?
Share
I think this paragraph extracted from this article explains the usage of PLINQ-to-SQL:
As for the usage of PLINQ in a web app, if the request requires many in-memory calculations in witch PLINQ might be useful (like if you have several data sources that you’d like to query together) I see no problems in using it.