Re: Using SOLR Autocomplete for addresses (i.e. multiple terms)

2012-01-29 Thread Dave
Thanks Jan, this is perfect! I'm going to work on implementing it this week and let you know how it works for us. Thanks again! Dave On Wed, Jan 25, 2012 at 1:10 PM, Jan Høydahl jan@cominvent.com wrote: Hi, I don't think that the suggester can output multiple fields. You would have to

Re: Using SOLR Autocomplete for addresses (i.e. multiple terms)

2012-01-29 Thread O. Klein
Jan Høydahl / Cominvent wrote Hi, As you see, you've got an answer at StackOverflow already with a proposed solution to implement your own QueryConverter. Another way is to create a Solr core solely for Suggest, and tune it exactly the way you like. Then you can have it suggest from

Re: Using SOLR Autocomplete for addresses (i.e. multiple terms)

2012-01-25 Thread Jan Høydahl
Hi, I don't think that the suggester can output multiple fields. You would have to encode your data in a special way with separators. Using the separate Solr core approach, you may return whatever fields you choose to the suggest Ajax component. I've written up a blog post and uploaded an

Re: Using SOLR Autocomplete for addresses (i.e. multiple terms)

2012-01-03 Thread Jan Høydahl
Hi, As you see, you've got an answer at StackOverflow already with a proposed solution to implement your own QueryConverter. Another way is to create a Solr core solely for Suggest, and tune it exactly the way you like. Then you can have it suggest from the whole input as well as individual

Re: Using SOLR Autocomplete for addresses (i.e. multiple terms)

2012-01-03 Thread Dave
Hi Jan, Yes, I just saw the answer. I've implemented that, and it's working as expected. I do have Suggest running on its own core, separate from my standard search handler. I think, however, that the custom QueryConverter that was linked to is now too restrictive. For example, it works perfectly

Re: Using SOLR Autocomplete for addresses (i.e. multiple terms)

2012-01-03 Thread Dave
I've got another question for anyone that might have some insight - how do you get all of your indexed information along with the suggestions? i.e. if each suggestion has an ID# associated with it, do I have to then query for that ID#, or is there some way or specifying a field list in the URL to

Using SOLR Autocomplete for addresses (i.e. multiple terms)

2012-01-02 Thread Dave
Hi, I'm new to SOLR, but I've got it up and running, indexing data via the DIH, and properly returning results for queries. I'm trying to setup another core to run suggester, in order to autocomplete geographical locations. We have a web application that needs to take a city, state / region,

Using SOLR Autocomplete for addresses (i.e. multiple terms)

2012-01-02 Thread Dave
Hi, I'm reposting my StackOverflow question to this thread as I'm not getting much of a response there. Thank you for any assistance you can provide! http://stackoverflow.com/questions/8705600/using-solr-autocomplete-for-addresses I'm new to SOLR, but I've got it up and running, indexing data