Scala Tooling Spree #1 recap
For the first Scala Tooling Spree we were able to solve 3 out of 4 selected issues during the meeting, which I think is an amazing result. |
Scala 3 Migration: Report from the Field
I decided to dedicate a week to migrate our main project at work (a multiplayer mobile game server in production for over 4 years) from Scala 2.13 to Scala 3. Pierre Ricadat (@ghostdogpr) |
Circuit Breaker — Ox 0.x documentation
A circuit breaker is used to provide stability and prevent cascading failures in distributed systems. These should be used with other mechanisms (such as timeouts or rate limiters) to prevent the failure of a single component from bringing down all components. The Circuit Breaker can proactively identify unresponsive services and prevent repeated attempts. Adam Warski (@adamwarski) |
The joys of messaging without a message bus
Depending on the usecase, it’s possible to build a production-grade, near-realtime messaging system on top of just PostgreSQL, foregoing messaging middlewares such as Kafka entirely. Dimitar Georgiev |