In this talk, I'll walk you through how workflows4s works, how it stands apart from tools like Temporal or Camunda, and why it just might be the better approach for modern, event-driven applications.
Tired of relying on bulky 3rd-party servers for managing workflows or building lightweight but ad-hoc solutions yourself? Imagine a library that offers a declarative, composable API and that requires only a database to run. Let me introduce you to workflows4s, a proof-of-concept state-of-the-art library solves the problem of long running stateful processes and builds on top of Scala 3 and principles of functional programming.
In this talk, I'll walk you through how workflows4s works, how it stands apart from tools like Temporal or Camunda, and why it just might be the better approach for modern, event-driven applications.
In this talk, we'll cover the essentials of macros, why they are useful, why you should care about them, and how to become as good as you need with them for practical purposes.
In this talk, I'll go through a couple of these projects, and share some of what they've taught me, as well as how their legacy affected other projects in the ecosystem. And who knows, maybe you'll get inspired to try something crazy with Scala too?
In this talk, I will discuss why it's hard to use the power of RT to test side-effect-heavy apps.
In this talk I will explain the inner workings of an organisation that goes into releasing, maintaining and developing Scala and core parts of its ecosystem.
In highly concurrent distributed systems, handling tens of millions of operations is a massive challenge! Delta Lake, which relies on Optimistic Concurrency Control, avoids locking entirely - allowing transactions to proceed in parallel without knowing each other’s existence. Instead, we resolve conflicts at commit time.