- James John
- Li Joan
- Johan Jazz
- Bill
For get all objects that begins from 'Joh', I use the next query:
+TYPE:"my:object" +@cm\:title:"joh*"
The result of the query:
- James John
- Johan Jazz
- Li Joan
'Joan' doesn't contain 'joh' in title. For solve that I modify my query:
+TYPE:"my:object" +@cm\:title:"[joh*]"
This query returns the right result:
- James John
- Johan Jazz
You can find more lucene tricks in wonderful book that called: "Lucene in Action" :)