Re: query in solr lucene

2009-07-30 Thread Avlesh Singh
What field type are you using? What kind of filters have you applied on the field? The easiest way to make it work it to use a "string" field. Cheers Avlesh On Fri, Jul 31, 2009 at 11:09 AM, Sushan Rungta wrote: > I tried this but this didn't worked... > > Regards, > Sushan > > At 12:37 AM 7/30

Re: query in solr lucene

2009-07-30 Thread Sushan Rungta
I tried this but this didn't worked... Regards, Sushan At 12:37 AM 7/30/2009, Avlesh Singh wrote: You may index your data using a delimiter, like $my-field-content$. While searching, perform a phrase query with the leading and trailing "$" appended to the query string. Cheers Avlesh On Wed, J

Re: query in solr lucene

2009-07-29 Thread Avlesh Singh
You may index your data using a delimiter, like $my-field-content$. While searching, perform a phrase query with the leading and trailing "$" appended to the query string. Cheers Avlesh On Wed, Jul 29, 2009 at 12:04 PM, Sushan Rungta wrote: > I tried using AND, but it even provided me doc 3 whi

Re: query in solr lucene

2009-07-28 Thread Sushan Rungta
I tried using AND, but it even provided me doc 3 which was not required. Hence my problem still persists... regards, Sushan At 06:59 AM 7/29/2009, Avlesh Singh wrote: > > No, phrase query would match docs 2 and 3. Sushan only wantsdoc 2 as I read > it. > Sorry, my bad. I did not read properly

Re: query in solr lucene

2009-07-28 Thread Avlesh Singh
> > No, phrase query would match docs 2 and 3. Sushan only wantsdoc 2 as I read > it. > Sorry, my bad. I did not read properly before replying. Cheers Avlesh On Wed, Jul 29, 2009 at 3:23 AM, Erick Erickson wrote: > No, phrase query would match docs 2 and 3. Sushan only wantsdoc 2 as I read > it.

Re: query in solr lucene

2009-07-28 Thread Erick Erickson
No, phrase query would match docs 2 and 3. Sushan only wantsdoc 2 as I read it. You might have some joy with KeywordAnalyzer, which does not break the incoming stream up into tokens. You have to be careful, though, because it also won't fold the case, so 'Hello' would not match 'hello'. Best Eric

Re: query in solr lucene

2009-07-28 Thread Avlesh Singh
You should perform a PhraseQuery on the required field. Meaning, http://your-solr-host:port:/your-core-path/select?q=fieldName:"Hello how are you sushan" would work for you. Cheers Avlesh 2009/7/28 Gérard Dupont > Hi Sushan, > > I'm not an expert of Solr, just beginner, but it appears to me tha

Re: query in solr lucene

2009-07-28 Thread Gérard Dupont
Hi Sushan, I'm not an expert of Solr, just beginner, but it appears to me that you may have default 'OR' combinaison fo keywords so that will explain this behavior. Try to modify the configuration for an 'AND' combinaison. cheers On Tue, Jul 28, 2009 at 16:49, Sushan Rungta wrote: > I am extr

Re: query in solr lucene

2009-07-28 Thread Sushan Rungta
I am extremely sorry for responding late as I was ill from past few days. My problem is explained below with an example: I am having three documents with following list: 1. Hello how are you 2. Hello how are you sushan 3. Hello how are you sushan. I am fine. When I search for a query "Hello ho

Re: query in solr lucene

2009-06-30 Thread Markus Jelsma - Buyways B.V.
Interesting, thanks for the link. I'm glad we didn't want to implement this anyway. On Tue, 2009-06-30 at 18:22 +0530, Shalin Shekhar Mangar wrote: > On Tue, Jun 30, 2009 at 5:06 PM, Sushan Rungta wrote: > > > Please assist me in making a query in lucene whereby I shall see the > > result with

Re: query in solr lucene

2009-06-30 Thread Shalin Shekhar Mangar
On Tue, Jun 30, 2009 at 5:06 PM, Sushan Rungta wrote: > Please assist me in making a query in lucene whereby I shall see the > result with: > > 1. 100% exact match > 2. 80% match > 3. 60% match. > > My query string will have minimum number of 100 characters and it may go > up by 1 characters.

Re: query in solr lucene

2009-06-30 Thread Markus Jelsma - Buyways B.V.
Hi, I am not sure if i understand completely but i suppose you'd need to retrieve the score field per document by adding &fl=score as parameter. This will return the score per document based on your query. If you then use the maxScore result as base, you can then calculate what is 100%, 80% etc.

Re: query in solr lucene

2009-06-30 Thread Erick Erickson
I'm having a hard time understanding what you're reallyafter. What does 80% exact match mean? Perhaps a couple of examples would help us help you. Best Erick On Tue, Jun 30, 2009 at 7:36 AM, Sushan Rungta wrote: > Please assist me in making a query in lucene whereby I shall see the > result wit

query in solr lucene

2009-06-30 Thread Sushan Rungta
Please assist me in making a query in lucene whereby I shall see the result with: 1. 100% exact match 2. 80% match 3. 60% match. My query string will have minimum number of 100 characters and it may go up by 1 characters. regards, Sushan Rungta Mob: +91-9312098968