Member-only story
How to enable case insensitive search in AEM with Lucene?
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…