MultiSearch Request solution for Liferay
Written By
Richárd Szabácsik
How To articles are not official guidelines or officially supported documentation. They are community-contributed content and may not always reflect the latest updates to Liferay DXP. We welcome your feedback to improve How To articles!
While we make every effort to ensure this Knowledge Base is accurate, it may not always reflect the most recent updates or official guidelines.We appreciate your understanding and encourage you to reach out with any feedback or concerns.
Legacy Article
You are viewing an article from our legacy "FastTrack"
publication program, made available for informational purposes. Articles
in this program were published without a requirement for independent
editing or verification and are provided"as is" without
guarantee.
Before using any information from this article, independently verify its
suitability for your situation and project.
Issue
- Liferay has no out of the box solution for handling MultiSearch Requests.
Resolution
- The Multi-Search API is exposed as a low-level API in Liferay Search's APIs through MultisearchSearchRequest - MultisearchSearchResponse from the
com.liferay.portal.search.engine.adapter.api
bundle.
- In a nutshell, in order to use it, you have to:
- Either use the DXP BOM API (
release.dxp.api
) matching with your 7.2 patch level e.g 7.2.10.fp14
(recommended) or use this artifact above (with a version that is suitable for your patch level) directly as a dependency in your module's build.gradle
. (Related doc.)
- @Reference SearchEngineAdapter in your code like this.
- Build and execute a MultisearchSearchRequest like this.
- Process the response by using the MultisearchSearchResponse API.
Did this article resolve your issue ?