Indexing Content Fragment Data | Community
Skip to main content
Level 2
August 17, 2018

Indexing Content Fragment Data

  • August 17, 2018
  • 3 replies
  • 5718 views

Hi there,

I have a requirement to create an index where the indexRules contains the followed properties:

+indexRules

     + cq:Page

          + properties

               - jcr:content/jcr:title

               - jcr:content/jcr:description

               - jcr:content/component/fragment

               - jcr:content/metas

When I got the property of the fragment I need to index the properties (e.g. title) of the content fragment. The issue is to index the content of the fragment without touching the core (java), if possible.

Do you know how could it be possible to fetch the content fragment data in the same index?

Regards.

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.

3 replies

smacdonald2008
Level 10
August 17, 2018

What is your use case - are you indexing content fragments in order to query them more efficiently?

Jitendra_S_Toma
Level 10
August 17, 2018

Hi,

Content fragment indexing is not different from regular content indexing. You can do that.

by the way, what is the use case?

naxtyn_Author
Level 2
August 20, 2018

Hi smacdonald,

Our requirement is to create a search tool for a new website. We need to index diferent page templates and one of them has the requirement to show a portion of the content fragment inside.

For example,

A page has an article that is created with content fragment and in the search we'll need to show the article name that is stored in the content fragment, in that case we will lauch a query to consume the results hiting our new index.

Regards.