Which of the following is true regarding Reactive Data Repositories in Spring Boot?

  • Reactive Data Repositories allow blocking operations.
  • Reactive Data Repositories are not suitable for real-time applications.
  • Reactive Data Repositories are used for relational databases only.
  • Reactive Data Repositories provide non-blocking, reactive access to data.
Regarding Reactive Data Repositories in Spring Boot, the true statement is that they provide non-blocking, reactive access to data. Reactive Data Repositories, often used with technologies like Spring Data R2DBC, enable developers to work with data in a reactive way. This means that database operations can be executed asynchronously and efficiently, making them suitable for building high-performance, non-blocking applications. Reactive Data Repositories are not limited to relational databases and can be used with various data stores.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *