Re: Solr spring application context error

2009-05-08 Thread Raju444us
> On Fri, May 8, 2009 at 12:19 AM, Raju444us wrote: >> >> I have configured solr using tomcat.Everything works fine.I overrode >> QParserPlugin and configured it.The overriden QParserPlugin has a >> dependency >> on another project say project1.So I made a jar

Re: solrcofig.xml - need some info

2009-05-07 Thread Raju444us
This is resolved.I solved this by reading solrPlugins on the solr wiki. Thanks, Raju Raju444us wrote: > > Hi Hoss, > > If i extend SolrQueryParser and override method getFieldQuery for some > customization.Can I configure my new queryParser somt

Solr spring application context error

2009-05-07 Thread Raju444us
I have configured solr using tomcat.Everything works fine.I overrode QParserPlugin and configured it.The overriden QParserPlugin has a dependency on another project say project1.So I made a jar of the project and copied the jar to the solr/home lib dir. the project1 project is using spring.It has

Re: solrcofig.xml - need some info

2009-05-06 Thread Raju444us
Hi Hoss, If i extend SolrQueryParser and override method getFieldQuery for some customization.Can I configure my new queryParser somthing like below explicit Do I need to place my new Parser class in solr/home/lib folder? Is this the right way to do thi

custome query parser.

2009-04-30 Thread Raju444us
How to write a custom query parser?When i get a query from client I have to parse it and append that field with a charecter for searching on that field.Can anyone tried this. Please help me in doing this.How to configure this queryparser in solr. Thanks, Raju -- View this message in context: ht

Facet counts for common terms of the searched field

2009-04-29 Thread Raju444us
I have a requirement. If I search for text field let's say "metal:glass" what i want is to get the facet counts for all the terms related to "glass" in my search results. window(100) since a window can be glass. plastic(10) plastic is a material just like glass Iron(10) Paper(15) Can I use MLT

Re: Get date facet counts per month

2009-04-24 Thread Raju444us
Thanks, Shalin.That worked. Shalin Shekhar Mangar wrote: > > On Thu, Apr 23, 2009 at 2:36 AM, Raju444us > wrote: > >> >> In the example on the wiki at gives the facet counts for date per day.How >> should the query look like to get date facets by month. >>

Re: Custom score for a id field

2009-04-24 Thread Raju444us
gt; On Thu, Apr 23, 2009 at 1:19 PM, Raju444us wrote: >> I have a requirement.I index a field "id" and a calculated score for that >> field named "fieldScore". >> >> Note:I have many other fields which are also indexed.But only for this id >> field

Re: Custom score for a id field

2009-04-24 Thread Raju444us
the document. If I used QueryElevationComponent how can I get the custom score which I indexed for this field. Thanks, Raju Shalin Shekhar Mangar wrote: > > On Thu, Apr 23, 2009 at 10:49 PM, Raju444us wrote: > >> >> I have a requirement.I index a field "id"

Custom score for a id field

2009-04-23 Thread Raju444us
I have a requirement.I index a field "id" and a calculated score for that field named "fieldScore". Note:I have many other fields which are also indexed.But only for this id field i want a custom calculated score. So when I search for that id q="id:1234".What I want is in the results if I use re

Re: Faceted Dates

2009-04-22 Thread Raju444us
In the example on the wiki that gives the facet counts for date per day.How should the query look like to get date facets by month. http://wiki.apache.org/solr/SimpleFacetParameters Here is the sample query for day level facet counts. http://localhost:8983/solr/select/?q=*:*&rows=0&facet=tru

Get date facet counts per month

2009-04-22 Thread Raju444us
In the example on the wiki at gives the facet counts for date per day.How should the query look like to get date facets by month. http://wiki.apache.org/solr/SimpleFacetParameters#head-068dc96b0dac1cfc7264fe85528d7df5bf391acd Here is the sample query for day level facet counts. http://localho

Get date facet counts per month level

2009-04-22 Thread Raju444us
In the example on the wiki at gives the facet counts for date per day.How should the query look like to get date facets by month. http://wiki.apache.org/solr/SimpleFacetParameters#head-068dc96b0dac1cfc7264fe85528d7df5bf391acd Here is the sample query for day level facet counts. http://localho

Re: Solr Getting values for an id

2009-04-21 Thread Raju444us
ional fields instead, if their number is fixed. > > Otis > -- > Sematext -- http://sematext.com/ -- Lucene - Solr - Nutch > > > > ----- Original Message >> From: Raju444us >> To: solr-user@lucene.apache.org >> Sent: Tuesday, April 21, 2009 5:4

Solr Getting values for an id

2009-04-21 Thread Raju444us
i have a problem. I have a requirement.I indexed document something like this.The id and testScore fields are multivalued. My problem is if i search for id=1 this should return the search results with id = 1 and testScore = 90. Is there any way I can do this. Test Name 1 90 2 92 3