-
I have a type that needs to be passed to the Lucene query template through URL parameters For example So I want to ignore case on the premise of full word matching Does anyone know what to do? Thank you. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
You can create a custom Analyzer for your own usage. But I believe that the standard analyzer should already do it. |
Beta Was this translation helpful? Give feedback.
-
I think you can downcase searched text parameter in query definition using liquid filter downcase |
Beta Was this translation helpful? Give feedback.
You can create a custom Analyzer for your own usage. But I believe that the standard analyzer should already do it.
Maybe I'm wrong I need to test it. Else, look at what I did with the FrenchAnalyzer on my repositories as an example of a custom Analyzer.