Question about Stemmer

2015-07-29 Thread Ashish Mukherjee
Hello, I am using Stemmer on a Ngram field. I am getting better results with Stemmer factory after Ngram, but I was wondering what is the recommended practice when using Stemmer on Ngram field? Regards, Ashish

Multiple concurrent queries to Solr

2015-08-23 Thread Ashish Mukherjee
Hello, I want to run few Solr queries in parallel, which are being done in a multi-threaded model now. I was wondering if there are any client libraries to query Solr through a non-blocking I/O mechanism instead of a threaded model. Has anyone attempted something like this? Regards, Ashish

Re: Multiple concurrent queries to Solr

2015-08-23 Thread Ashish Mukherjee
the pool > > is exhausted, it can block. > > > > wunder > > Walter Underwood > > wun...@wunderwood.org > > http://observer.wunderwood.org/ (my blog) > > > > > > On Aug 23, 2015, at 8:49 AM, Shawn Heisey wrote: > > > > > On 8/23/2

Solr score distribution usage

2015-09-08 Thread Ashish Mukherjee
Hello, I would like to use the Solr score distribution to pick up most relevant documents from the search result. Rather than top n results, I am interested only in picking up the most relevant based on statistical distribution of the scores. A brief study of some sample searches (the most freque

SpellCheck component query

2015-03-07 Thread Ashish Mukherjee
Hello, I have enabled the Spellcheck component in Solr, which gives me spelling suggestions. However, I would like those suggestions to be applied in the same select request handler to retrieve additional results based on the suggestions. How can this be achieved with Solr? Regards, Ashish

Re: SpellCheck component query

2015-03-08 Thread Ashish Mukherjee
d to show wrong suggestion instead of providing the > inappropriate results to the user. > > In this case you could the show the chat and chai as suggestion to the user > and then he could select the appropriate suggestion. > > With Regards > Aman Tandon > > On Sat, Ma

Solr phonetics with spelling

2015-03-10 Thread Ashish Mukherjee
Hello, Couple of questions related to phonetics - 1. If I enable the phonetic filter in managed-schema file for a particular field, how does it affect the spell handler? 2. What is the meaning of the inject attribute within in managed-schema? The documentation is not very clear about it. Regar

Chaining components in request handler

2015-03-10 Thread Ashish Mukherjee
Hello, I would like to create a request handler which chains components in a particular sequence to return the result, similar to a Unix pipe. eg. Component 1 -> result1 -> Component 2 -> result2 result2 is final result returned. Component 1 may be a standard component, Component 2 may be out o

Re: Chaining components in request handler

2015-03-12 Thread Ashish Mukherjee
> Query has Components (e.g. Faceting, MoreLIkeThis, etc) > > Or something different? > > Regards, >Alex. > > Solr Analyzers, Tokenizers, Filters, URPs and even a newsletter: > http://www.solr-start.com/ > > > On 10 March 2015 at 13:34, Ashish Mukherjee >