Re: (Clojure-related book) Seven Concurrency Models in Seven Weeks

2013-10-03 Thread Sean Johnson
According to page 11 of this: http://media.pragprog.com/titles/pb7con/intro.pdf They are: 1. Threads & Locks (old school) 2. Actors (Erlang and its clones) 3. Functional Programming (no mutable state) 4. Separate State and Identity (Clojure) 5. Data Parallelism (something about GPU's) 6. Lambda

Re: (Clojure-related book) Seven Concurrency Models in Seven Weeks

2013-09-29 Thread sailormoo...@gmail.com
What are those 7 models ? -- -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from t

(Clojure-related book) Seven Concurrency Models in Seven Weeks

2013-09-28 Thread Jaley
Hey all, I was asked to review this book [1], which was recently announced. I thought it may be of interest to the Clojure community in particular, as despite being generally language-agnostic in theme, many of the examples given are in Clojure, and indeed some of Clojure's bigger ideas about