OverviewMotivationWe could never quite figure out what the hell Microsoft’s System.Web did during its massively complicated, poorly-documented request lifecycle. ASP.NET modules have historically been quite heavy and complicated to set up, especially on Linux+Apache with By using Kayak, you're saying no to heavy, complicated, server-specific interfaces for tying into production front-ends such as CGI, Apache's module system, ISAPI, WSGI, and the like. Instead, your application speaks a language any front-end understands: HTTP. Additionally, Kayak puts your application in control by allowing it to define its own entry point and load up the server, not the other way around. There are four stages to an HTTP request: request headers read in, request body (if any) read in, response headers written out, response body (if any) written out. Kayak gives you fine-grain control over what you do during each of those stages. The API documentation in this section explains in detail how this is achieved. UsageThe HTTP server component is found in For details on the request handling logic, see |