MongoDB Client

Learn how to use MongoDB with the Quarkus application.

There is a variety of NoSQL databases on the market, and each one offers a unique set of features. We’ll focus on one of the most used, which is MongoDB.

Press + to interact

NoSQL use cases

NoSQL databases are generally used for e-commerce. In cases like these, the product being sold might be very different, so having a common schema is not possible. However, having a schema for each product is also not possible when there is a large variety of products.

Using NoSQL solves this issue; we don’t have to worry about the schema, and we can save what we need. ...