vote up 10 vote down star
9

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,

flag
Joe Albahari's free ebook 'Threading in C#' is excellent. – Mitch Wheat Oct 1 '08 at 10:23

9 Answers

vote up 5 vote down check

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|flag
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
vote up 2 vote down

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

link|flag
vote up 2 vote down

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

link|flag
vote up 1 vote down

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|flag
vote up 1 vote down

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

link|flag
vote up 1 vote down

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

link|flag
vote up 1 vote down

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|flag
vote up 1 vote down

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|flag
vote up 0 vote down

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|flag

Your Answer

Get an OpenID
or

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