Re: How to identify field names from the suggested values in multiple fields

2015-06-04 Thread Erick Erickson
There shouldn't be any limitation. You haven't provided the full stack trace, so there's not a lot to say. Do be a little careful, though, since the parameters are slightly different for analyzingInfix, i.e. indexPath rather than sotreDir. Best, Erick On Thu, Jun 4, 2015 at 4:55 AM, Dhanesh Radh

Re: How to identify field names from the suggested values in multiple fields

2015-06-04 Thread Dhanesh Radhakrishnan
Dear Erick, That document help me to build multiple suggesters But still there is one problem that I faced. When I used both suggesters with same lookupImpl as AnalyzingInfixLookupFactory AnalyzingInfixLookupFactory solr throws an error Caused by: java.lang.RuntimeException at org.apache.

Re: How to identify field names from the suggested values in multiple fields

2015-06-03 Thread Erick Erickson
Yes, this might help: http://lucidworks.com/blog/solr-suggester/ Best, Erick On Wed, Jun 3, 2015 at 10:32 PM, Dhanesh Radhakrishnan wrote: > Thank you for the quick response. > If I use 2 suggesters, can I get the result in a single request? > http://192.17.80.99:8983/solr/core1/suggest?suggest=

Re: How to identify field names from the suggested values in multiple fields

2015-06-03 Thread Dhanesh Radhakrishnan
Thank you for the quick response. If I use 2 suggesters, can I get the result in a single request? http://192.17.80.99:8983/solr/core1/suggest?suggest=true&suggest.dictionary=mySuggester&wt=xml&suggest.q=school Is there any helping document to build multiple suggesters?? On Thu, Jun 4, 2015 at 10

Re: How to identify field names from the suggested values in multiple fields

2015-06-03 Thread Walter Underwood
Configure two suggesters, one based on each field. Use both of them and you’ll get separate suggestions from each. wunder Walter Underwood wun...@wunderwood.org http://observer.wunderwood.org/ (my blog) On Jun 3, 2015, at 10:03 PM, Dhanesh Radhakrishnan wrote: > Hi > Anyone help me to build

How to identify field names from the suggested values in multiple fields

2015-06-03 Thread Dhanesh Radhakrishnan
Hi Anyone help me to build a suggester auto complete based on multiple fields? There are two fields in my schema. Category and Subcategory and I'm trying to build suggester based on these 2 fields. When the suggestions result, how can I distinguish from which filed it come from? I used a copyfie