Thanks for your reply, I will check this advice
--
View this message in context:
http://lucene.472066.n3.nabble.com/Ordered-proximity-search-tp3477946p3480321.html
Sent from the Solr - User mailing list archive at Nabble.com.
Hi Thomas,
Do you always need the ordered proximity search by default ?
You may want to check SpanNearQuery at "
http://www.lucidimagination.com/blog/2009/07/18/the-spanquery/";.
We are using edismax query parser provided by Solr.
I had a similar type of requirement in our project in h
query:
"term1 term2"~Integer.MAX_VALUE
my results is: 2 documents
How can I query to have one result (only if term1 come before term2):
"By ordered I mean term1 will always come before term2 in the document"
Thanks
--
View this message in context:
http://lucene.472066.n3.nabble.com/Or