How to create and manage computed fields in SOLR | Community
Skip to main content
New Participant
October 13, 2022
Solved

How to create and manage computed fields in SOLR

  • October 13, 2022
  • 2 replies
  • 705 views

Can we do custom logic on indexing process to create a custom field and value?

For example, adding a custom logic to convert value from field ABC from AEM to value in field ABC1 in SOLR

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

Before indexing, you can add this field in your manage_schema and refresh collection. Then do indexing by sending required page or properties to your collection. Custom Manipulation logic you need to write at index service.

2 replies

HeenaMadan
HeenaMadanAccepted solution
New Participant
October 13, 2022

Before indexing, you can add this field in your manage_schema and refresh collection. Then do indexing by sending required page or properties to your collection. Custom Manipulation logic you need to write at index service.

B_Sravan
New Participant
October 13, 2022

Not sure, but it would it be totally server side manipulation where you may not have much control. I would recommend amending the values before triggering the SOLR call.