Member-only story

How to enable case insensitive search in AEM with Lucene?

Albin Issac
4 min readJun 28, 2020

--

This tutorial explains how to enable case insensitive search in AEM with Lucene.

I have two nodes with property “id” under /content/sampledata with same value in different case e.g TEST and test

By default, the Lucene search is case sensitive so the query will return only the matching node — the node matching with value “test”

The case insensitive can be enabled through analyzers in Lucene index

Refer the following URL to configure the custom Lucene index

Analyzer

Analysis, in Lucene, is the process of converting field text into its most fundamental indexed representation, terms. These terms are used to determine what…

--

--

Albin Issac
Albin Issac

Written by Albin Issac

I work as a Software Architect specializing in Marketing Technologies. For more information, please visit my profile at: https://myprofile.albinsblog.com/

No responses yet