Integrate Elastic Search in a Play! Framework Application. This module uses JPA events to notify Elastic Search of events of their own. It embeds a running Elastic Search instance for Rapid Development.
I've added basic support for hydrating JPA entities.
To prevent n+1 the code performs a batch-load for all search results at once; Next, if sorts the hydrated entities to match the search result order.
This new functionality is available through ElasticSearch.searchAndHydrate() so it doesn't break existing code.
Hi,
I've added basic support for hydrating JPA entities. To prevent n+1 the code performs a batch-load for all search results at once; Next, if sorts the hydrated entities to match the search result order.
This new functionality is available through ElasticSearch.searchAndHydrate() so it doesn't break existing code.
Bas