async-patterns
Installation
SKILL.md
Async Patterns
Fiber-based concurrency for Ruby using the async gem.
Overview
The async gem provides fiber-based concurrency:
| Approach | Use Case | Concurrency Model |
|---|---|---|
| Threads | CPU-bound work | OS threads |
| Async | I/O-bound work | Fibers (lightweight) |
| Processes | Isolation | Fork/spawn |
Use async when: