Lucene In Action for lucene 2.0

2006-03-10 Thread Ernesto De Santis
Hi Erik and Otis Do you think release a new LIA edition for lucene 2.0? Regards Ernesto. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Asturian Analyzer

2005-12-20 Thread Ernesto De Santis
Hi All Exist an analyzer for Asturian language? Regards, Ernesto. -- Ernesto De Santis - Colaborativa.net La Plata, Argentina. http://www.colaborativa.net/ - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands

Re: highlight only one field

2005-11-11 Thread Ernesto De Santis
. Every line of code in QueryTermsExtractor that calls terms.add(new WeightedTerm(..)) would be the place to test the field name then. For now you could copy QueryTermsExtractor and put an "if" around these lines which tests the field name for your choice of field. Cheers Mark

Re: highlight only one field

2005-11-11 Thread Ernesto De Santis
[EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Ernesto De Santis - Colaborativa.net La Plata, Argentina. http://www.colaborativa.net/ - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

highlight only one field

2005-11-11 Thread Ernesto De Santis
he parameter is the query: *highlighter = new Highlighter(new QueryScorer(query));* but I don't say witch is the field to highlight. The another QueryScorer constructor is: *QueryScorer(WeightedTerm[] wet);* But, who I can get the terms from body field in my query? Regards Ernesto. -- Ernesto D

Re: deleting on a keyword field

2005-06-03 Thread Ernesto De Santis
nges made to the index? Regards Daniel -- Ernesto De Santis - Colaborativa.net La Plata, Argentina. http://www.colaborativa.net/ ___ A tu celular ¿no le falta algo? Usá Yahoo! Messenger y Correo Yahoo! en tu teléfono celular. Más informa

BooleanQuery$TooManyClauses::getMessage() == null

2005-05-18 Thread Ernesto De Santis
ch.BooleanQuery$TooManyClauses: null Now I fix the TooManyClauses issue in my application. The e.getMessage() == null is a lucene bug? Bye Ernesto. -- Ernesto De Santis - Colaborativa.net La Plata, Argentina. http://www.colaborativa.net/ -

Max Field Length

2005-05-06 Thread Ernesto De Santis
Hi Exist a max length for a Field value? I have problems indexing large body files. The bottom isn't indexed. Bye, Ernesto. -- Ernesto De Santis - Colaborativa.net Córdoba 1147 Piso 6 Oficinas 3 y 4 (S2000AWO) Rosario, SF, Arge

Re: Multi-analyzer ?

2005-04-12 Thread Ernesto De Santis
- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Ernesto De Santis - Colaborativa.net Córdoba 1147 Piso 6 Oficinas 3 y 4 (S2000AWO) Rosario, SF, Argentina. - To unsubscribe,

Re: Analyzer don't work with wildcard queries, snowball analyzer.

2005-03-31 Thread Ernesto De Santis
rd queries in lucene code? Ernesto. Erik Hatcher escribió: Wildcard terms simply are not analyzed. How could it be possible to do this? What if I search for "a*" - how could you stem that? Erik On Mar 31, 2005, at 9:51 AM, Ernesto De Santis wrote: Hi I get an unexpected behavior when u

Analyzer don't work with wildcard queries, snowball analyzer.

2005-03-31 Thread Ernesto De Santis
("ex*ple"); strq = q.toString(); assertEquals("body:ex*pl", strq); //FAIL strq == body:ex*ple With this behavior, the search does not find any document. Bye Ernesto. -- Ernesto De Santis - Colaborativa.net Córdoba

snowball analyzer uismo issue in spanish stemmer

2005-03-16 Thread Ernesto De Santis
ne "amigo" is fine but "amigismo" not is fine the right word is "amiguismo". this happen every times when the 'g' letter. I don't know if it is possible to fix or it produces an ambiguity. Ernesto. --