소개
The Async/Sync Advisor is a specialized skill designed to improve the efficiency and reliability of Rust-based AWS Lambda functions. It monitors handler implementations to identify mixed I/O and CPU-bound workloads, providing proactive recommendations on when to utilize Tokio's async runtime versus offloading intensive computations to blocking thread pools with Rayon or spawn_blocking. By preventing common mistakes like blocking the async runtime with heavy CPU tasks, this skill ensures your serverless functions remain responsive, scalable, and cost-efficient.