In this lightning talk, we take a look at ArcShift, a lock-free data structure for shared data that still needs to be mutated.
In this lightning talk, we take a look at ArcShift, a lock-free data structure for shared data that still needs to be mutated.
While the standard library's Arc<RwLock<T>> allows multiple threads to access and modify the same object, even read-accesses require somewhat expensive atomic operations.
ArcShift allows multiple writers without penalizing readers, and give examples on how (and how not to) write lock-free data structures. We'll also dive into how ArcShift handles the memory reclamation problem (or cheats its way out of it).
This talk explores lessons learned while building a CRDT library with JSON semantics, aimed at application developers.
In this lightning talk, we will explore the reasons why Icedragon was created, what makes it unique, and how you can use it to provide portable builds for your projects.
We will explore some ways to make Async Rust programming more enjoyable and more efficient at the same time.
Discover how Cargo extensions can revolutionize your Rust development workflow in this insightful talk.
In this talk, we’ll go through some real-life examples of using Rust features like traits, newtype wrappers, generics, and macros for creating financial software. We’ll look at how regular application code can benefit from the features Rust provides.
After spending many happy years in Scala, not mutating anything but copying objects faster than rabbits breed I ventured into the world where each allocation is carefully examined and it is perfectly normal to reuse the same list for different purposes.