Solr autocomplete keyword and geolocation based

2012-12-09 Thread reeuv
I am looking for getting auto complete suggestions using Solr based on keyword as well as geolocation. Is there a way the 'Suggester' component or any other way, Solr can take in multiple fields for auto completion? For e.g. if I have a restaurants database and I want to get suggestions using keyw

Distance Range Filtering

2012-06-02 Thread reeuv
Hi everyone I am trying to do distance range search using Solr. I know its very easy to do a search for filtering within the 5km range /&q=*:*&fq={!geofilt pt=45.15,-93.85 sfield=store d=5}/ What I am after is how to do the same thing if I am looking in a range of say *5 to 10 km* ?? Thanks -

Re: Checking which terms are already available in the index from a list of terms

2012-01-04 Thread reeuv
Thanks Hoss for the valuable advice. -- View this message in context: http://lucene.472066.n3.nabble.com/Checking-which-terms-are-already-available-in-the-index-from-a-list-of-terms-tp3631699p3633226.html Sent from the Solr - User mailing list archive at Nabble.com.

Checking which terms are already available in the index from a list of terms

2012-01-04 Thread reeuv
I have a list of terms that I want to check which of them are already available in the index for e.g I have a which indexes the terms. And I have list of words e.g. Honda, Civic, 2001. I want to check which of these terms are already available in the index. Is there any good efficient way of d

Re: Search Query (Should I use fq)

2011-12-30 Thread reeuv
Thanks for your help iorixxx . If you can help me solve one of my other questions as well that would be great http://lucene.472066.n3.nabble.com/Getting-results-in-reverse-order-they-were-indexed-td3620577.html http://lucene.472066.n3.nabble.com/Getting-results-in-reverse-order-they-were-indexed-

Getting results in (reverse) order they were indexed

2011-12-30 Thread reeuv
Is there any possible way to get the results back from Solr in the reverse order they were indexed (i.e. the documents that was most recently added should be the first in the result) I know I can add a indexedAt=NOW field of type date and sort on it in desc order. But if I have a paginated web a

Search Query (Should I use fq)

2011-12-30 Thread reeuv
I am looking to write a query in which a user will enter two conditions i.e. Search for description: where category: So whats the best way to query it 1. q = (description:text) AND (category:someCategory) or 2. q = (description:text) AND (fq=category:someCategory) or Is ther