Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Architecture Council/Links Collection"

(Concurrency)
(Concurrency)
Line 10: Line 10:
 
* [http://www.amazon.com/Java-Concurrency-Practice-Brian-Goetz/dp/0321349601/ Java Concurrency in Practice] contains an excellent treatment of the issues. In a dynamic environment such as OSGi you need to be aware of the rules surrounding things such as visibility, safe publication etc.
 
* [http://www.amazon.com/Java-Concurrency-Practice-Brian-Goetz/dp/0321349601/ Java Concurrency in Practice] contains an excellent treatment of the issues. In a dynamic environment such as OSGi you need to be aware of the rules surrounding things such as visibility, safe publication etc.
 
* [http://www.eecs.berkeley.edu/Pubs/TechRpts/2006/EECS-2006-1.pdf The Problem with Threads by Edward A. Lee] Often cited article explaining the problems of threading today.
 
* [http://www.eecs.berkeley.edu/Pubs/TechRpts/2006/EECS-2006-1.pdf The Problem with Threads by Edward A. Lee] Often cited article explaining the problems of threading today.
* [http://www.infoq.com/presentations/goetz-concurrency-past-present Concurrency: Past and Present by Brian Goetz] -- A 1h presentation on Concurrency in Java. Brian shows a very simple example and how difficult it is to get concurrency done correctly.
+
* [http://www.infoq.com/presentations/goetz-concurrency-past-present Concurrency: Past and Present by Brian Goetz] -- A 1h presentation on Concurrency in Java. Brian shows a very simple example and how difficult it is to get concurrency done correctly. (If you think threading is easy -- listen to this talk...).
  
 
=== Eclipse Concurrency ===
 
=== Eclipse Concurrency ===

Revision as of 11:46, 9 October 2008

A collection of interesting links to articles, blogs and other resources related to software architecture. Please add your name when you add an item, for discussions.

Patterns

Concurrency

Eclipse Concurrency

Java Idioms

Tips & Tricks

Eclipse Foundation

Outside of the Eclipse Ecosystem

Back to the top