Mono is for zero or one item, while Flux is for zero to many items.
Mono and Flux are both reactive types. Use Mono when you expect a single result, like fetching a specific user by ID. Use Flux when dealing with multiple results, such as retrieving a list of all products in a category. This distinction helps in choosing the right reactive type based on expected results.