Re: Solr custom component issue

2015-05-11 Thread j 90
re is > > seperate module from which these values get populated , I am reading > > those > > values from external datasource and I want to attach them to each request > > . > > > > > > > > -- > > View this message in context: > > > http

Re: Solr custom component issue

2015-05-11 Thread Upayavira
> values from external datasource and I want to attach them to each request > . > > > > -- > View this message in context: > http://lucene.472066.n3.nabble.com/Solr-custom-component-issue-tp4204799p4204832.html > Sent from the Solr - User mailing list archive at Nabble.com.

Re: Solr custom component issue

2015-05-11 Thread nutchsolruser
-custom-component-issue-tp4204799p4204832.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Solr custom component issue

2015-05-11 Thread Upayavira
On Mon, May 11, 2015, at 10:30 AM, nutchsolruser wrote: > I can not set qf in solrconfig.xml file because my qf and boost values > will > be changing frequently . I am reading those values from external source. > > Can we not set qf value from searchComponent? Or is there any other way > to > d

Re: Solr custom component issue

2015-05-11 Thread nutchsolruser
.nabble.com/Solr-custom-component-issue-tp4204799p4204815.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Solr custom component issue

2015-05-11 Thread Upayavira
changing it to first-component in solrconfig.xml but no > luck . > > Am I missing something here ? Here I want to add my own qf fields with > boost > in query. > > > > -- > View this message in context: > http://lucene.472066.n3.nabble.com/Solr-custom-compone

Re: Solr custom component issue

2015-05-11 Thread nutchsolruser
Thanks Upayavira, I tried it by changing it to first-component in solrconfig.xml but no luck . Am I missing something here ? Here I want to add my own qf fields with boost in query. -- View this message in context: http://lucene.472066.n3.nabble.com/Solr-custom-component-issue

Re: Solr custom component issue

2015-05-11 Thread Upayavira
g()); >} > > relevanct request handler in solrconfig.xml file : > > > *:* >description > > > custom-component > > > > > How I can add qf param correctly in query so that solr can use this while > searching ? > > > > > > > -- > View this message in context: > http://lucene.472066.n3.nabble.com/Solr-custom-component-issue-tp4204799.html > Sent from the Solr - User mailing list archive at Nabble.com.

Solr custom component issue

2015-05-11 Thread nutchsolruser
relevanct request handler in solrconfig.xml file : *:* description custom-component How I can add qf param correctly in query so that solr can use this while searching ? -- View this message in context: http://lucene.472066.n3.nabble.com/Solr-custom-component-issue-tp4

Re: solr custom component

2012-01-31 Thread Erick Erickson
Look at the Sort class. You just specify the field you want to sort on, direction, and pass the class to your IndexSearcher.search method. Best Erick On Tue, Jan 31, 2012 at 1:24 AM, Peter Markey wrote: > Hi Eric, > > I tried looking for a sample code to sort on Date but was unable to find > one

Re: solr custom component

2012-01-30 Thread Peter Markey
Hi Eric, I tried looking for a sample code to sort on Date but was unable to find one? I am using 3.4 version. Any idea as to where I can find one? Thanks a ton On Fri, Jan 27, 2012 at 8:13 AM, Erick Erickson wrote: > Why not just sort on date and take the first doc returned in the list? > > Be

Re: solr custom component

2012-01-27 Thread Erick Erickson
Why not just sort on date and take the first doc returned in the list? Best Erick On Thu, Jan 26, 2012 at 10:33 AM, Peter Markey wrote: > Hello, > > I am building a custom component in Solr and I am trying to construct a > query to get the latest (based on a date field) DocID using SolrIndexSear