Skip to content
#

concurrent-programming

Here are 548 public repositories matching this topic...

zio
softinio
softinio commented Mar 5, 2020

Docusaurus has blog functionality. So my idea is we add it and use it similar to:

https://scalameta.org/mdoc/blog/

Content we should add to the blog:

  • Copy of releases notes
  • Newsletter content: Maybe actually have the newsletter content here and email sent is a copy or a link to our blog as an idea
  • Write blogs related to new functionality
  • Invite outside contributors to add n
kazimuth
kazimuth commented Apr 2, 2020

This code:

let map = DashMap::<i32, i32>::new();
map.insert(1, 2);
let a = map.get_mut(&1);
let b = map.get(&1);

will deadlock. The shard containing 1 gets write-locked, nothing else can access it. This is reasonable behavior but I think it should be documented.

Perhaps more surprising is that this code:

let map = DashMap::<i32, i32>::new();

for i in 0..100

Improve this page

Add a description, image, and links to the concurrent-programming topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the concurrent-programming topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.