Changes for page Concurrency

Last modified by chrisby on 2024/06/02 15:15

From version 2.1
edited by chrisby
on 2024/03/04 21:48
Change comment: Renamed back-links.
To version 2.2
edited by chrisby
on 2024/06/02 15:15
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -17,7 +17,7 @@
17 17  ### Defensive Concurrency Programming
18 18  
19 19  * **Single-Responsibility Principle**
20 - * **Separation of code**: Changes to concurrent code should not be mixed with changes to the rest of the code. Therefore, you should separate the source code of sequential and concurrent code.
20 + * **Separation of code**: Changes to concurrent code should not be mixed with changes to sequential code. Therefore, you should separate the source code of sequential and concurrent code.
21 21   * **Separation of change**: Concurrent code has special problems that are different, and often more serious, than sequential code. This means that concurrent and sequential code should be changed separately, not within the same commit, or even within the same branch.
22 22  * **Principle of Least Privilege**: Limit concurrent code to the resources it actually needs to avoid side effects. Minimize the amount of shared resources. Divide code blocks and resources into smaller blocks to apply more granular, and therefore more restrictive, resource access.
23 23  * **Data Copies**: You can sometimes avoid shared resources by either working with copies of data and treating them as read-only, or by making multiple copies of the data, having multiple threads compute results on them, and merging those results into a single thread. It is often worth creating multiple objects to avoid concurrency problems.