up vote 21 down vote favorite
15
share [g+] share [fb]

I want to read a good book about multithreading and parallelism. I have a primarily .NET background but I think I would prefer a book focused on first principles and working into general patterns and algorithms and being overall less technology specific.

Obviously a discussion of the kind of low-level system architecture issues that the C# "volatile" keyword attempts to address (for example) would be important, just without being tied directly to a particular language.

Is there a particular book in this field that stands out among the others?

Thanks,

link|improve this question

25% accept rate
feedback

closed as not constructive by Jeremy Banks, templatetypedef, Tim Post Sep 17 '11 at 22:45

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ.

9 Answers

up vote 8 down vote accepted

Brian Goetz's Java Concurrency in Practice is excellent. Some of the information is Java specific, but most patterns and principles apply equally to C#.

Book cover

link|improve this answer
1  
It's a great book for Java but not so sure about C# – Steve McLeod Oct 1 '08 at 10:56
1  
After two weeks, this answer has the most votes so I'll accept it and go buy the book. – Jason Stangroome Oct 14 '08 at 7:46
feedback

Joe Albahari's free ebook Threading in C# is excellent.

It contains pretty everything you need to know about threading, and it's free!

link|improve this answer
feedback

I am aiming for C++ Concurrency in Action to be that book, at least if you're programming in C++. Though all the examples are C++-specific, lots of the principles are not. See, for example, the excerpt recently published on CodeGuru about deadlock.

link|improve this answer
feedback

Joe Duffy has a book coming out soon: Concurrent Programming on Windows

Obviously that's somewhat technology specific, but it goes into a lot of low-level detail and also addresses the principles involved. It's platform-specific but not really language-specific. It's also by someone who I trust enormously when it comes to concurrency.

link|improve this answer
feedback

I recommend Principles of Concurrent and Distributed Programming by M. Ben-Ari, or his first about Concurrent Programming

link|improve this answer
feedback

Jeffrey Richter's CLR via C# has a couple of great chapters on asynchronous programming in CLR.

link|improve this answer
feedback

Doug Lea's Concurrent Programming in Java: Design Principles and Pattern. Though it's titled "in Java," patterns like Guarded Suspension came from Lea.

Concurrent Programming in Java: Design Principles and Pattern

link|improve this answer
feedback

I haven't read it yet, but The Art of Multiprocessor Programming by Herlihy and Shavit has been getting good reviews.

link|improve this answer
feedback

The best resource for learning how to use multi-threading in an OO language that I've ever used is:

Lea, Douglas - Concurrent Programming in Java(TM): Design Principles and Patterns (3rd Edition)

If you want to understand low-level hardware/software details and how Java/.NET multi-threading constructs are implemented then the following is a great start:

Butenhof, David R. - Programming with POSIX(R) Threads (Addison-Wesley Professional Computing Series)

To understand how to apply concepts from the pthreads book to a Windows environment then the following is essential:

Hart, Johnson M. - Windows System Programming (3rd Edition)

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.