Re-creating threading and concurrency knowledge in increasingly popular languages - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T12:54:47Zhttp://stackoverflow.com/feeds/question/440036http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/440036/re-creating-threading-and-concurrency-knowledge-in-increasingly-popular-languages6Re-creating threading and concurrency knowledge in increasingly popular languagesDavid2009-01-13T17:52:42Z2009-03-09T19:10:31Z
<p>I am primarily a Java developer, and I've been reading a lot of in-depth work on threads and concurrency. Many very smart people (Doug Lea, Brian Goetz, etc) have authored books on these topics and made contributions to new concurrency libraries for Java.</p>
<p>As I start to learn more about Python, Ruby, and other languages, I'm wondering: does all of that work have to be re-created for these languages?</p>
<p>Will there be, or does there need to be, a "Doug Lea of Python," or a "Brian Goetz of Ruby," who make similarly powerful contributions to the concurrency features of those languages? </p>
<p><b>Does all of this concurrency work done in Java have to be re-created for future languages?</b> Or will the work done in Java establish lessons and guidance for future languages?</p>
http://stackoverflow.com/questions/440036/re-creating-threading-and-concurrency-knowledge-in-increasingly-popular-languages/440086#4400868Answer by sk for Re-creating threading and concurrency knowledge in increasingly popular languagessk2009-01-13T18:04:08Z2009-01-13T22:51:23Z<p>The basic principles of concurrent programming existed before java and were summarized in those java books you're talking about. The java.util.concurrent library was similarly derived from previous code and research papers on concurrent programming.</p>
<p>However, some implementation issues are specific to Java. It has a specified memory model, and the concurrent utilities in Java are tailored to the specifics of that. With some modification those can be ported to other languages/environments with different memory model characteristics.</p>
<p>So, you might need a book to teach you the canonical usage of the concurrency tools in other languages but it wouldn't be reinventing the wheel.</p>
http://stackoverflow.com/questions/440036/re-creating-threading-and-concurrency-knowledge-in-increasingly-popular-languages/442252#4422525Answer by Parand for Re-creating threading and concurrency knowledge in increasingly popular languagesParand2009-01-14T08:12:45Z2009-01-14T08:28:29Z<p>Keep in mind that threads are just one of several possible models for dealing with "concurrency". Python, for example, has one of the most advanced asynchronous (event based) non-threaded models in <a href="http://twistedmatrix.com/trac/" rel="nofollow">Twisted</a>. Non-blocking models are quite powerful and are used as alternatives to threads in most of the highest scaling apps out there (eg. nginx, lighttpd). </p>
<p>Your assumption that other popular languages need threads may simply be a symptom of a java centric (and hence thread-centric) world view. Take a look at the <a href="http://www.kegel.com/c10k.html" rel="nofollow">C10K</a> page for a slightly dated but highly informative look at several models for how to handle large volumes of concurrent requests.</p>
http://stackoverflow.com/questions/440036/re-creating-threading-and-concurrency-knowledge-in-increasingly-popular-languages/442312#4423121Answer by Phil Nash for Re-creating threading and concurrency knowledge in increasingly popular languagesPhil Nash2009-01-14T08:47:34Z2009-01-14T08:47:34Z<p>This is not flame bait, but IMHO Java has one of the simpler and more restricted models for threading and concurrency available.
That's not necessarily a bad thing, but at the level of granularity it offers it means that the perspective it gives you of what concurrency is and how to deal with it is inherently limited if you have a "java centric" view (as someone else put it).</p>
<p>If you're serious about concurrency, then it's worth exploring other languages precisely <em>because</em> different models and idioms exist.</p>
<p>Some of the hottest areas are lock-free programming (you'll see a lot of it, but often done badly, in C++) and functional programming (which has been around for a while but arguably, is becoming increasingly relevant. A prime example in the case of concurrency is probably Erlang).</p>
http://stackoverflow.com/questions/440036/re-creating-threading-and-concurrency-knowledge-in-increasingly-popular-languages/463249#4632492Answer by Alex Miller for Re-creating threading and concurrency knowledge in increasingly popular languagesAlex Miller2009-01-20T21:41:01Z2009-01-20T21:41:01Z<p>I think the answer is both yes and no. Java arguably has the most well-defined memory model and execution semantics of the most commonly used imperative languages (Java, C++, Python, Ruby, etc). In some sense, other languages either lack this completely or are playing catch-up (if that's even possible given the immaturity of the threading models). </p>
<p>C++ is probably the notable exception - it has been treading the same ground for C++0x and has possibly gone beyond the current state of the Java model from my impression.</p>
<p>I say no because the communities are not isolated. Many of the guys working on this stuff are involved (at least from a guidance point of view, if not from a direct hand in the specs) in more than one language. So, there is a lot of crosstalk between guys working on JMM and guys working on C++0x specs as they are essentially solving the same problems with many of the same underlying drivers (from the hardware guys at the bottom and the users at the top). And I'm pretty sure there is cross-talk at some level between the JVM / CLR camps as well. </p>
<p>As others have mentioned, there are also other models for concurrency: actors in Erlang and Scala, agents/STM in Clojure, FP's rise in F#, Scala, Haskell, the CCR and PLINQ stuff in CLR land, etc. It's an exciting time right now! We can use as many concurrency experts as we can find I think.... :)</p>