Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tweak README again #51

Merged
merged 1 commit into from
Sep 29, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ the *throughput*) of your program, it is highly recommended to look for ways to
**avoid** using concurrent collections first. In particular, consider applying
the [data-parallel](https://juliafolds.github.io/data-parallelism/) pattern to
dodge the difficulties in concurrent programming. For example, it is often a
better idea to use task-local copies of **non**-thread-safe `Dict` instead of
`ConcurrentDict` shared across tasks. For more information, see: [Efficient and
safe approaches to mutation in data
better idea to use task-local **non**-thread-safe `Dict`s instead of a
`ConcurrentDict` shared across tasks. One of the most important techniques in
data-parallel programming is how to merge such task-local states. For more
information, see, e.g., [Efficient and safe approaches to mutation in data
parallelism](https://juliafolds.github.io/data-parallelism/tutorials/mutations/).