I am trying to do a lucene search based on a path, but I need it to do a case insensitive search for path.
If I have a directory path /app:company_home/st:sites/cm:mySpace/cm:Test, I can do a lucene search with
PATH:"/app:company_home/st:sites/cm:mySpace/cm:Test" and I get back the expected result.
But if I:
PATH:"/app:company_home/st:sites/cm:mySpace/cm:test"
as the query parameter, this won't return the directory 'Test'.
Is there a way to do a path search that is case insensitive?
Peter Choe