Being able to change the behavior or to extend the functionality of a piece of software, without changing it from the inside, is pretty neat. In this chapter, you will learn how to plug middleware in the request pipeline of Dapr to deal with things like rate limiting, authentication, and authorization.
Middleware in Dapr
Using middleware is a very popular technique for request-based pipelines. It is essentially a system for chaining plugins that do some kind of processing on a request, ...