dingdingding
dingdingding

Reputation: 1581

AEM Search and Promote search refinement

If I integrate S&P with AEM and use the built in components, is it possible to do search refinement for specific sections of the JCR?

For instance if I have a forum built from community components with user generated content. Can I add a S&P search box which will only search this forum?

Upvotes: 1

Views: 510

Answers (1)

Aleksey Slyshkov
Aleksey Slyshkov

Reputation: 136

S&P is external SAAS for AEM and S&P can not search in your local JCR repository. You have to create/feed database on the S&P side for the search.

You are collecting data that you want to be searched and pushing this data to S&P. Each part of this data should contains also information of repository path where this data located.

E.g. {'first', 'product', 'any'}<->/content/site/firstProduct

Later any search request to S&P for first will returns also path /content/site/firstProduct

Back to your question: you can push S&P any data from you JCR repository. If you pushed only ... this forum data then a S&P search box which will only search this forum

Upvotes: 1

Related Questions