Async
8 items tagged with "async"
Anti-Patterns3
Blocking the Event Loop
Running CPU-heavy or synchronous work on a single-threaded event loop, stalling every other in-flight request until it finishes.
Synchronous-Over-Async (sync-over-async)
Blocking a thread to wait on an asynchronous operation's result, combining the costs of both models and risking thread-pool starvation or deadlock.
Meeting Overload
Filling calendars with so many meetings that there is little uninterrupted time left for the focused work the meetings are meant to coordinate.
Stacks4
FastAPI + SQLAlchemy Stack
Async Python backend stack using FastAPI, SQLAlchemy, and PostgreSQL for high-performance, type-hinted REST and ML-serving APIs.
Ktor Kotlin Backend Stack
Asynchronous Kotlin backend using the Ktor framework with PostgreSQL and coroutines for lightweight, idiomatic, non-blocking services.
Rust Axum/Actix Backend Stack
High-performance, memory-safe Rust backend using Axum or Actix with PostgreSQL for low-latency, resource-efficient services.
Axum + SQLx (Rust)
A modern async Rust backend built on the Tokio runtime with the Tower middleware ecosystem and compile-time-checked SQL via SQLx.