Re: Help required in Ways to compress index size.

2018-02-28 Thread benafia salem
Hi prtahp, I think the first step you need to check if you want to reduce your index size, is avoid "storing" fields. Do a first test and check if your search performance still met your expections. 2018-02-28 12:46 GMT+01:00 prathap simha : > Hi Lucene Team, > > Greetings of the day. Thanks for

Help required in Ways to compress index size.

2018-02-28 Thread prathap simha
Hi Lucene Team, Greetings of the day. Thanks for your great search engine. We are using the .Net version of Lucene for our product search application component. Because of customers huge project sizes our search index size is very huge day by day. So, we want to reduce the index size by using t

Re: help required ... ~ operator

2007-12-11 Thread Otis Gospodnetic
Have you tried with ~3 or ~4? Just curious... Otis -- Sematext -- http://sematext.com/ -- Lucene - Solr - Nutch - Original Message From: Shakti_Sareen <[EMAIL PROTECTED]> To: java-user@lucene.apache.org Sent: Tuesday, December 11, 2007 3:13:47 AM Subject: help required ... ~ op

help required ... ~ operator

2007-12-11 Thread Shakti_Sareen
Hi all, I am using StandardAnalyzer() to index the data. Actual data is: "signals by magnets of different strength" when I am parsing a query: "signals strength"~2 , I am getting a hit. But when I am parsing a query "strength signals"~2 , I am not getting a hit. WHY???it should work

Re: help required ... ~ operator

2007-12-10 Thread Erik Hatcher
On Dec 10, 2007, at 4:48 AM, Shakti_Sareen wrote: I am using StandardAnalyzer() to index the data. I am getting false hits in ~ operator query. Actual data is: "signals by magnets of different strength" and when I am parsing a query: "signals strength"~2 , I am getting a hit which is a

help required ... ~ operator

2007-12-10 Thread Shakti_Sareen
Hi all, I am using StandardAnalyzer() to index the data. I am getting false hits in ~ operator query. Actual data is: "signals by magnets of different strength" and when I am parsing a query: "signals strength"~2 , I am getting a hit which is a false result. I am using QueryParser. Please

Re: help required

2007-11-23 Thread Mark Miller
ubject: Re: help required urgent!!! The thing is - StandardAnalyzer breaks on hyphen. You'll need to work around this by either extend StandardAnalyzer >From StandardTokenizer's documentation (which is used by StandardAnalyzer): **Splits words at hyphens, unless there'

help required

2007-11-23 Thread Shakti_Sareen
@lucene.apache.org Subject: Re: help required urgent!!! The thing is - StandardAnalyzer breaks on hyphen. You'll need to work around this by either extend StandardAnalyzer >From StandardTokenizer's documentation (which is used by StandardAnalyzer): **Splits words at hyphens, unl

Re: help required urgent!!!!!!!!!!!

2007-11-22 Thread Matthijs Bierman
ption. Thanks a lot for your reply. Please suggest me how can I go ahead. SHAKTI SAREEN GE-GDC STC HYDERABAD 994894 -Original Message- From: Shai Erera [mailto:[EMAIL PROTECTED] Sent: Thursday, November 22, 2007 9:25 PM To: java-user@lucene.apache.org Subject: Re: help required u

Re: help required urgent!!!!!!!!!!!

2007-11-22 Thread Shai Erera
rpose. On Nov 22, 2007 6:19 PM, mark harwood <[EMAIL PROTECTED]> wrote: > >>Re: help required urgent!!! > > Yikes!! > > I'm guessing that the question was more about how to support this in the > standard query syntax w

Re: help required urgent!!!!!!!!!!!

2007-11-22 Thread Shai Erera
-Original Message- > From: Shai Erera [mailto:[EMAIL PROTECTED] > Sent: Thursday, November 22, 2007 9:25 PM > To: java-user@lucene.apache.org > Subject: Re: help required urgent!!! > > Hi > > You can simply create a PrefixQuery. However, if you're using > S

Re: help required urgent!!!!!!!!!!!

2007-11-22 Thread mark harwood
>>Re: help required urgent!!! Yikes!! I'm guessing that the question was more about how to support this in the standard query syntax where there are multiple words. i.e. http://www.google.com/search?q=lucene+wildcard+in+phrase This post

RE: help required urgent!!!!!!!!!!!

2007-11-22 Thread Shakti_Sareen
can I go ahead. SHAKTI SAREEN GE-GDC STC HYDERABAD 994894 -Original Message- From: Shai Erera [mailto:[EMAIL PROTECTED] Sent: Thursday, November 22, 2007 9:25 PM To: java-user@lucene.apache.org Subject: Re: help required urgent!!! Hi You can simply create a PrefixQuery. Ho

Re: help required urgent!!!!!!!!!!!

2007-11-22 Thread Shai Erera
Hi You can simply create a PrefixQuery. However, if you're using StandardAnalyzer, and the word is added as Index.TOKENIZED, sotf-wa will be broken to 'soft' and 'wa'. Therefore you'll need to add the word as Index.UN_TOKENIZED, or use a different Analyzer when you index the data (for this field a

help required urgent!!!!!!!!!!!

2007-11-22 Thread Shakti_Sareen
Hi I am using StandardAnalyser() to index the data. But I want to do a like search on a word containing Hyphen For example it want to search a word "soft-wa*" I am getting no hits for that. It is said that if the hyphen is there in the word, then we should include that word in the double quotes (