This document discusses async microservices using Finagle. Finagle is an asynchronous, protocol-agnostic RPC system built on Netty. It provides building blocks like services, futures, and filters to build non-blocking services. Services return futures and compose asynchronously using flatMap, map, for-comprehensions, collect, and select. Filters can transform requests and responses in a type-safe manner. Examples demonstrate using Finagle for HTTP services, timeouts, OAuth authentication, and calculating Fibonacci numbers concurrently.