Hello
I'm testing the fulltext search feature with lucene and trying to figure out how to use it.
I did some small tests :
Search with the exact word:
select from color where name lucene 'silber' : OK
select from color where name lucene 'test silber test' : OK
Fuzzy search with the tilde "~"
select from color where name lucene 'siilbeer~0.7' : OK
select from color where name lucene 'test siilbeer~0.7 test' : OK
Search with compound word :
select from color where name lucene '"mineralsilber" : KO
select from color where name lucene "mineralsilber~0.2" : KO
As you can see, it seems the basic search is not very good with compound words or when whitespace is stripped between two words
How can I do a search with compound words ?
I found on google that the ngrams were the way to go in those cases: but is it possible to use it with OrientDb/Lucene ? and how ?