Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Ok, so I did a course on locks and monitors a couple of monthgs ago, and when i was doing it I could clearly see the design patterns and the Antipatterns. more recently I cwas called to put them into large scale practical use, and in the gap time (and partially my change of programming language from F# to C#), I could feel my skills had started to wan. I could see some things we were doing that felt like antipatterns (like i think there is an antipattern of using anything that is not atomic (ie most things other than lock) to keep track of that is allows and what isn't) But it took me a while to try and work out the correct code to go in its place (but i know there are textbook solutions to most problems).

So I'm looking for a some notes on design patterns/antipatterns with particular reference to locks, monitors and other threading related concerns. I would like to see examples in C# and ideally would have examples for Java and Python (F# too would be good, since while C# can be manipulated to use F# techniques they still are more prevelent in F#). Does anyone know of a good resource, (such as a website or book) Where I can find some? (since there are too many to fit in just one answer.)

share|improve this question
I'm not sure that you'll find a book with in-depth coverage of .NET, Java and Python. They have different memory models etc so a pattern that's "good" on one platform might well be seen as an anti-pattern on the others. – LukeH Aug 10 '11 at 9:44
most of the threading library, for Java and .Net is functionally the same (though java doesn't have anything that resembler first order functions AFAIK) and the patterns I'm looking far arn't for speed they are for reliability (Eg not having deadlocks, or knowing when a assyconous method is done). I have no idea about python as i've never tried multi threading in it. – Oxinabox Aug 10 '11 at 9:50
Sorry, shopping questions are off topic at SE: blog.stackoverflow.com/2010/11/qa-is-hard-lets-go-shopping – Hans Passant Aug 10 '11 at 10:20
@Hans, Are book recommendations off-topic? I've certainly seen alot and given some. – Don Roby Aug 10 '11 at 11:32
I have rewrote the question it nolonger refers to buying thing. But more to my reson for wanting to buy something. Anyway if you'll look at the comments on your page @Hans, books are still up for debate – Oxinabox Aug 10 '11 at 12:38

closed as not constructive by Hans Passant, 0A0D, Bill the Lizard Oct 2 '11 at 22:27

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

2 Answers

up vote 0 down vote accepted

Unfortunately there is no single awesome book about concurrency in every language, each has it's own way of implementing it. Joe Duffy's "Concurrent Programming on Windows" is a great book if you want to really get down into the nitty-gritty OS-level details of every concurrency construct in windows, but a lot of it also applies to other systems like Java/JVM as well.

If you want something a little higher level that covers would recommend these two books:

Patterns for Parallel Programming: Understanding and Applying Parallel Patterns with the .NET Framework 4 (link) by Toub.
This is a nice FREE introduction to many of the patterns used in parallel programming, along with nice examples on how to go from sequential, to parallel code. It is all .Net but you will get to see how some of the higher level constructs/ideas like tasks, continuations, etc work.

Parallel Programming with Microsoft® .NET Design Patterns for Decomposition and Coordination on Multicore Architectures by Campbell, Johnson, Miller, Toub Parallel Programming with Microsoft .NET Design Patterns for Decomposition and Coordination on Multicore Architectures (link)

This is a nice book on best patterns/practices for .Net Parallel/Concurrent programs, but the ideas can be transplanted into a sufficiently advanced programming language.

share|improve this answer

I recommend to read and use Joe Duffys "Concurrent Programming on Windows" book:

http://www.amazon.com/Concurrent-Programming-Windows-Joe-Duffy/dp/032143482X/ref=sr_1_1?ie=UTF8&qid=1312996908&sr=8-1

This book contains about 1000 pages and contains detailed information about concurrency programming for both .Net and WinApi.

share|improve this answer

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