RE: Highlighting is not happening

2010-05-25 Thread Doddamani, Prakash
highlighting parameters hl.simple.pre and hl.simple.post. By the way, there are a plenty of other parameters that affect highlighting. Take a look at: http://wiki.apache.org/solr/HighlightingParameters -Sascha Doddamani, Prakash wrote: > Hey, > > I thought the Highlights would happen in the

RE: Highlighting is not happening

2010-05-25 Thread Doddamani, Prakash
de 1. the definition of the relevant field 2. your query 3. the definition of the relevant request handler 4. a field value that is stored in your index and should be highlighted -Sascha Doddamani, Prakash wrote: > Thanks Sascha, > > The "type" for fields for which I am searching are a

RE: Highlighting is not happening

2010-05-24 Thread Doddamani, Prakash
use a "non-tokenized" type (e.g., string), highlighting will not appear if only a partial field match exists (only exact matches, i.e. the query coincides with the field value, will be highlighted). If that's not your intent, you should at least define an tokenizer for the field type

RE: Highlighting is not happening

2010-05-24 Thread Doddamani, Prakash
Hey Daren, Yes the fields for which I am searching are stored and indexed, also they are returned from the query, Also it is not coming, if the entire search keyword is part of the field. Thanks Prakash -Original Message- From: dar...@ontrenet.com [mailto:dar...@ontrenet.com] Sent: Mon

Highlighting is not happening

2010-05-24 Thread Doddamani, Prakash
Hi I am using dismax request handler, I wanted to highlight the search field, So added true I was expecting like if I search for keyword "Akon" resultant docs wherever the Akon is available is bold. But I am not seeing them getting bold, could some one tell me the real path where I sho

RE: how to achieve filters

2010-05-20 Thread Doddamani, Prakash
Oops my bad, Thanks much -Original Message- From: Ahmet Arslan [mailto:iori...@yahoo.com] Sent: Thursday, May 20, 2010 4:31 PM To: solr-user@lucene.apache.org Subject: RE: how to achieve filters > > And the request I am passing is > /solr/select?indent=on&version=2.2&q=rock&fq={!fi

RE: how to achieve filters

2010-05-20 Thread Doddamani, Prakash
cuments above bitarate 127 Regards Prakash -Original Message- From: Ahmet Arslan [mailto:iori...@yahoo.com] Sent: Thursday, May 20, 2010 4:09 PM To: solr-user@lucene.apache.org Cc: Doddamani, Prakash Subject: RE: how to achieve filters > I am getting Error in Solr > Error loading cla

RE: how to achieve filters

2010-05-20 Thread Doddamani, Prakash
I want only mp3 from 0 to 128 You can append filter queries (fq) as many as you want. &q=rock&fq={!field f=content}mp3&fq=bitrate:[* TO 128] -Original Message- From: Doddamani, Prakash [mailto:prakash.doddam...@corp.aol.com] Sent: Tuesday, May 18, 2010 9:06 PM To: solr

RE: how to achieve filters

2010-05-18 Thread Doddamani, Prakash
Thanks Ahmet, Let me try these options Regards Prakash -Original Message- From: Ahmet Arslan [mailto:iori...@yahoo.com] Sent: Tuesday, May 18, 2010 9:06 PM To: solr-user@lucene.apache.org Subject: RE: how to achieve filters > Yep content is string, and bitrate is int. bitrate should

RE: how to achieve filters

2010-05-18 Thread Doddamani, Prakash
Hey q=rock&fq:bitrate:[* TO 128] bitrate is int This also return docs with more then 128 bitrate, Is there something I am doing wrong Regards prakash -Original Message- From: Doddamani, Prakash [mailto:prakash.doddam...@corp.aol.com] Sent: Tuesday, May 18, 2010 8:44 PM To: solr-

RE: how to achieve filters

2010-05-18 Thread Doddamani, Prakash
Thanks much Ahmet, Yep content is string, and bitrate is int. I am digging more now Can we combine both the scenarios. q=rock&fq={!field f=content}mp3 q=rock&fq:bitrate:[* TO 128] Say if I want only mp3 from 0 to 128 Regards Prakash -Original Message- From: Ahmet Arslan [mailto:iori.

how to achieve filters

2010-05-18 Thread Doddamani, Prakash
Hi All I am using "dismax" query to fetch docs from solr where I have set some boost to the each fields, If I search for query "Rock" I get following docs with some boost value which I have specified, 19.494072 120 mp3 Rock 1 st name 1 19.494052 248 aac+ Rock 2 s

RE: How to make documents low priority

2010-04-29 Thread Doddamani, Prakash
Thanks much Koji, Let me have look on this, Regards Prakash -Original Message- From: Koji Sekiguchi [mailto:k...@r.email.ne.jp] Sent: Thursday, April 29, 2010 8:25 PM To: solr-user@lucene.apache.org Subject: Re: How to make documents low priority Doddamani, Prakash wrote: > Tha

RE: How to make documents low priority

2010-04-29 Thread Doddamani, Prakash
l Message- From: Jon Baer [mailto:jonb...@gmail.com] Sent: Thursday, April 29, 2010 7:39 PM To: solr-user@lucene.apache.org Subject: Re: How to make documents low priority Does a "sort=field5+desc" on the query param not work? - Jon On Apr 29, 2010, at 9:32 AM, Doddamani, Prakash w

How to make documents low priority

2010-04-29 Thread Doddamani, Prakash
Hi, I am using the boost factor as below field1^20.0 field2^5 field3^2.5 field4^.5 Where it searches first in field1 then field1 and so on Is there a way, where I can make some documents very low priority so that they come at the end? Scenario : aaa bbb dd

RE: Solr response extremely slow

2010-02-03 Thread Doddamani, Prakash
Hey Can any one say which is the latest and stable version, We are using 1.2 Solr Specification Version: 1.2.0 Solr Implementation Version: 1.2.0 - Yonik - 2007-06-02 17:35:12 Lucene Specification Version: 2007-05-20_00-04-53 Lucene Implementation Version: build 20

how to use boost factor

2009-12-09 Thread Doddamani, Prakash
Hi, While searching (querying) the solr, how can we achieved following scenario. Search priority should be in the following order: 1. Genre 2. nowplaying 3. Stationname 4. Keywords Say I am searching for "rock" it should search in "genre" field first and then nowplayin