By tag: Concurrency
0
kicks
New Parallel Extensions to the .NET Framework CTP Released
Microsoft has released the latest CTP for Parallel Extensions to the .NET Framework. Parallel Extensions to the .NET Framework simplifies development by providing library-based support for introducing concurrency into applications written with any .NET language.
0
kicks
A basic NamedLock class
Here’s a bit of code I extracted from my own special baby of an application. It allows me to lock on a specific "name", rather than having to use an object instance and the built in lock construct.
0
kicks
640K Is Enough For Anyone, 64 Cores is Enough For Anyone,
640K Is Enough For Anyone It is déjà vu all over again, someone decided that 64 cores is enough for everyone
0
kicks
Concurrent Affairs: Async additions to C#
My man-crush, Jeffrey Richter (of CLR Via C# fame) writes in the November issue of MSDN magazine about some of the recent additions to C# that makes the async programming model easier, plus other stuff.
0
kicks
Optimize Managed Code For Multi-Core Machines
Multi-processor machines are now becoming standard while the speed increases of single processors have slowed down. The key to performance improvements is therefore to run a program on multiple processors in parallel. Unfortunately, it is still very hard to write algorithms that actually take advant...