Can I make a fully non-blocking backend application with http-kit and core.async?
With the async approach you get to send the data to the client when its ready, instead of blocking a thread the whole time its being prepared. For http-kit, you should be using an async handler described in the documentation. After delegating the request to an async handler in a proper way, you can implement … Read more