DEV Community

Discussion on: Using the new Azure SDK for Java to upload images asynchronously, using Spring Reactor

Collapse
 
stealthmusic profile image
Jan Wedel

In my opinion, this is best suited in a microservice architecture, where you will code some specific services with a reactive API, and some with a traditional thread-based API.

This is a really important side note. Uploading (or downloading) files is a good use case for a reactive server. Also long living connections like streaming are. Other use cases probably aren’t.