Changes for page Concurrency
Last modified by chrisby on 2024/06/02 15:15
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -1,5 +1,7 @@ 1 - Objectsare abstractions of processing, **threads areabstractions of timing**.1 +## Concurrency 2 2 3 +* Objects are abstractions of processing, threads are abstractions of timing. 4 + 3 3 ### Why concurrency? 4 4 5 5 * **Concurrency is a decoupling strategy**. The what is decoupled from the when. ... ... @@ -25,7 +25,14 @@ 25 25 26 26 ### Things to learn before working with concurrency 27 27 28 -* **Get to know your library**: Use the thread-safe collections provided. Use non-blocking solutions if possible. Be aware multiple library classes are not thread safe. 30 +* Get to know your library 31 + * Use the thread-safe collections provided. 32 + * Use the executor framework to execute disjointed tasks. 33 + * Use non-blocking solutions if possible. 34 + * Multiple library classes are not thread-safe. 35 +* Thread-safe collections 36 + * So you should use ConcurrentHashMap instead of HashMap. 37 + * Author's recommendations: java.util.concurrent, java.util.concurrent.atomic, java.util.concurrent.locks. 29 29 * Get to know execution models 30 30 * Basic definitions 31 31 * Bound Resources