Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.

Indexing Content Fragment Data

Avatar

Level 2

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.

3 Replies

Avatar

Level 10

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

Avatar

Level 9

Hi,

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

by the way, what is the use case?

Avatar

Level 2

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.