Hello All,
How can I create index and then search like in SQL Server FTS?
I.e. data is indexed once and then user can search:
- exact matching: "apple", "monkey", "drunk" etc...
- forms of words:
- enter "drunk" and find "drink", "drank", "drunk"
- enter "apples" and find "apples", "apple"
- context: "app*" and find "apple", "application" etc
Is it possible?
thank you!