Read Locks Are Not Your Friends
https://eventual-consistency.vercel.app/posts/write-locks-faster
#HackerNews #Read #Locks #Are #Not #Your #Friends #write #locks #consistency #performance #concurrency
Read Locks Are Not Your Friends
https://eventual-consistency.vercel.app/posts/write-locks-faster
#HackerNews #Read #Locks #Are #Not #Your #Friends #write #locks #consistency #performance #concurrency
Swift concurrency is so nuanced it finally got its own dedicated website. An essential bookmark for every Swift developer navigating async/await, actors, and data races.
🔗: https://fuckingapproachableswiftconcurrency.com/en/ by Pedro Piñera Buendía (@pedro)
Why does MainActor isolation prevent SendableMetatype conformance? A puzzling concurrency constraint explored through documentation practice and the Zettelkasten method.
🔗: https://christiantietze.de/posts/2026/01/zettelkasten-for-programmers-documenting-confusing-with-swift-sendablemetatype/ by Christian Tietze (@ctietze)
I got terribly confused reading the API docs on th SendableMetatype protocol. Because I do not yet know the solution, I want to share how I store this in my Zettelkasten for future problem-solving and discussions.
#Concurrency bugs rarely fail loudly — they leak resources, stall requests, & waste CPU. @BalaRawool demonstrates how #StructuredConcurrency can short-circuit failures and keep workflows consistent in #SpringBoot.
Make your services more resilient: https://javapro.io/2026/02/19/virtual-threads-structured-concurrency-and-scoped-values-putting-it-all-together/
Understanding Std:Shared_mutex from C++17
https://www.cppstories.com/2026/shared_mutex/
#HackerNews #C++17 #SharedMutex #Understanding #C++ #Programming #Concurrency #TechNews

In this article, we’ll start with a basic example using std::mutex, look at its limitations, and then introduce std::shared_mutex, a reader-writer mutex added in C++17. Even in 2026, with many new concurrency features available, std::shared_mutex is still a valuable and practical tool. Let’s jump in. A Simple Thread-Safe Counter with std::mutex We’ll begin with a small example (a standard “hello world” for this type of mutexes): a counter object that multiple threads can access:
From Java to Kotlin – Part X: Virtual Threads and Coroutines
A blog by Justus
Considering a move to Kotlin? Coming from a Java background? In this short series of blog posts, I’ll take a look at familiar, straightforward Java concepts and demonstrate how you can approach them in Kotlin. While many of these points have already been discussed in earlier posts by colleagues, my focus is simple: how you used to do it...
#dev #softwaredevelopment #java #kotlin #concurrency
https://jdriven.com/blog/2026/02/Java-To-Kotlin-Series-10-Threads/
Take your C++ concurrency to the next level!
Join Concurrency Tools in the C++ Standard Library with Mateusz Pusz — threads, mutexes, futures, semaphores & more, hands-on.
🗓 24 Apr | 🖥 Online
Find out more and register: https://cpponline.uk/workshop/concurrency-tools-in-the-cpp-standard-library/

Today, C++ software is increasingly asynchronous and parallel, a trend that is likely only to continue going forward. The C++ standard acknowledged threads and provided the first concurrency facilities with C++11. The set of primitives and lower-level building blocks was greatly extended in C++20 with many powerful abstractions. During this training, we will learn the […]
Hybrid IO-driven Promise (Scala snippet)
#Scala #CatsEffect #Akka #Concurrency #FP #Programming
https://alexn.org/blog/2026/02/17/hybrid-io-driven-promise-in-scala-snippet/