May 2017
Beginner to intermediate
596 pages
15h 2m
English
The data indexes are used for quick searches for data and are generally used by data services in the data access layer. These can optionally also be exposed as REST/SOAP endpoints. This indexing layer is generally based on Lucene based indexing engines and are very fast when it comes to searches that need to reflect the changes in near-real-time. The indexes could optionally also serve the complete data and in certain time critical use cases that is helpful as well. It needs to be ensured that these indexes are built to support performance and scalability since these handle more of the real time service load.
The most common framework to build data services is Spring Boot, closely followed by Dropwizard. All ...