cancel
Showing results for 
Search instead for 
Did you mean: 

Search by category path is case sensitive

hseoane
Champ in-the-making
Champ in-the-making
Hi guys,
I'm trying to perform a case insensitive search of categories by their path:

PATH:"/cm:generalclassifiable/cm:Test//cm:testquery"

I currently have a category named "TestQuery" which wasn't showing up in the results, so I changed the dataTypeAnalyzers.properties file (and dataTypeAnalyzers_en.properties just to be certain) to use the EnglishSnowballAnalyser. I also rebuilt my lucene indexes and created the mentioned TestQuery category again to be sure it would get added to the Lucene index. Nevertheless, whenever I search for testquery (using the PATH query I mention) I still get no results…

Is there a way to index paths ignoring their case?

Thanks!
Hernan
1 REPLY 1

hseoane
Champ in-the-making
Champ in-the-making
Well, I no longer need to do this.

In case anyone wonders what the workaround was, this is it: in case of searching for the PATH, we switch to search for the "name" field, using a query like the following:

+@cm\:name:"testquery" +TYPE:"cm:category" +PATH:"/cm:generalclassifiable/cm:Test//*"

Cheers!
Hernan