So , i just started using Lucene.Net , i must say its great framework for Full-Text-Search but i am bit lost while devising a strategy for search from the online e-commerce portal.
It's a typical scenario
1- User enters a query in the magical search Box " Man Black T-Shirts under $ 50 "
its a well known case for the NLP like query and i did a lot of research and found there is no .net port available for Lucene.Net.
Now , my question is how do i formulate a Query for the above user query and submit it to the Lucene to return some meaning full result?
Where to start, With TermQuery , BooleanQuery , phraseQuery , what should be the search strategy with lucene.net for a e-commerce product site?
Please advice?