The document describes the FAST (Functional Augmented State Transfer) architecture, which separates a server into a REST server and functional programming server (lambda server). The REST server handles resources through HTTP methods like GET and PUT, while the lambda server enables stateless functional calls through a functional API. This separation addresses limitations of the REST architecture like inability to pass parameters and potential side effects. The FAST architecture supports discovery of functions, parallelization, and separation of resource management from functional computation for cleaner design, efficiency, and security.
Related topics: