about snowball and *

2004-10-25 Thread Wermus Fernando
Luceners, If I have a spanish word as oportunidad, Lucene indexed as oportuni using an Spanish snowball analyzer. When I search for a document it works well. But If the user writes oportunidad* looking up n1 words, it doesn't match with the document I have indexed. Analyzer instead of

not tokenized fields

2004-09-24 Thread Wermus Fernando
Luceners, When a field is not tokenized should I replace every space for a ?? I'm looking up for : my dear If I test with luke, it splits the words in 'my' and 'dear'. So I can't find in my not tokenized field. The same happens for my dear In these case I don't know why it

RE: MultiSearcher + Sort

2004-09-23 Thread Wermus Fernando
Karthik, I have a kind of similar problem. Test the following: when you create a field, don't use Field(String), instead use Field(String, int) where int is a constant for the field's type. May be this could help. -Mensaje original- De: Karthik N S [mailto:[EMAIL PROTECTED]

about snowball

2004-09-22 Thread Wermus Fernando
I have test my app with snowball for english. But I'm doing something wrong because I can't get any result from hit. If I index lazy with English snowball when I see the word in Luke it shows lazy (I've read that Luke show the file as is). When I do the search for the word laziness the snowball

bug in MultiFieldQueryParser.parse

2004-09-21 Thread Wermus Fernando
I have this query string queryString = tarea AND (tipo:contact OR tipo:account OR tipo:opportunity OR tipo:event OR tipo:task) and when I parse query=MultiFieldQueryParser.parse(queryString,fields,analyzer); I got one letter less. I have tarea and the MultiFieldQueryParser change to tare. I don't

RE: bug in MultiFieldQueryParser.parse

2004-09-21 Thread Wermus Fernando
instead of tare. I got a tare when searching with snowballSpanish and I got a tarea with snowballSpanish when indexing (I'm using luke for looking up in the index). Thanks in advance. -Mensaje original- De: Wermus Fernando [mailto:[EMAIL PROTECTED] Enviado el: Martes, 21 de Septiembre de

SortField[] in search method (newbie)

2004-09-16 Thread Wermus Fernando
. If you do not have any non-indexed shotnames in the index, I don't think u would have got that error. But I may be wrong. Praveen - Original Message - From: Wermus Fernando [EMAIL PROTECTED] To: Lucene Users List [EMAIL PROTECTED] Sent: Wednesday, September 15, 2004 1:53 PM Subject: RE

SortField[] solved. Warning

2004-09-16 Thread Wermus Fernando
doesn't appear. I think that it should show a message like It couldn't detect the field type Or something like this, because it was very confusing to me the message error. -Mensaje original- De: Wermus Fernando [mailto:[EMAIL PROTECTED] Enviado el: Jueves, 16 de Septiembre de 2004 11

problem with SortField[] in search method (newbie)

2004-09-15 Thread Wermus Fernando
Luceners, My search looks up the whole entities. My entities are accounts, contacts, tasks, etc. My searching looks up a group of entity's fields. This works fine despite, I don't have indexed any entity in a document. But If I sort by some fields from different entities, I get the following

RE: problem with SortField[] in search method (newbie)

2004-09-15 Thread Wermus Fernando
more than that, it'll work properly only on Untokenized fields, ie keyword). Aviran -Original Message- From: Wermus Fernando [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 15, 2004 13:13 PM To: [EMAIL PROTECTED] Subject: problem with SortField[] in search method (newbie) Luceners

RE: MultiFieldQueryParser seems broken... Fix attached.

2004-09-08 Thread Wermus Fernando
Bill, I don't receive any .java. Could you send it again? Thanks. -Mensaje original- De: Bill Janssen [mailto:[EMAIL PROTECTED] Enviado el: Martes, 07 de Septiembre de 2004 10:06 p.m. Para: Lucene Users List CC: Ali Rouhi Asunto: MultiFieldQueryParser seems broken... Fix

where is the SnowBallAnalyzer?

2004-09-08 Thread Wermus Fernando
I have to look better, but why the SnowBallAnalizer isn't in org.apache.lucene.analysis.snowball.SnowballAnalyzer package? I have lucene 1.4. I'm doing my own spanish stemmer.

about search sorting

2004-09-03 Thread Wermus Fernando
Luceners, My app is creating, updating and deleting from the index and searching too. I need some information about sorting by a field. Does any one could send me a link related to sorting? Thanks in advance.

RE: complex searche (newbie)

2004-08-27 Thread Wermus Fernando
feedback ? best regards Bernhard Wermus Fernando wrote: I am using multifieldQueryParse to look up some models. I have several models: account, contacts, tasks, etc. The user chooses models and a query string to look up. Besides fields for searching, I add some conditions to the query string

about performance (newbie)

2004-08-19 Thread Wermus Fernando
Luceners, I have elements (accounts, contacts, task, events) where I have to find in any field a word (hello for example). Which is the best way to do that with Lucene? In other words, I have several elements where I have to search a Word. I can make one search and then order the hits to

newbie: about grouping field

2004-08-12 Thread Wermus Fernando
Luceners I have to search a string in 30 fields. I know how to do it in a long way. I wanna know if exists a shorter way. String for searching: what's your name? Long way: +firstname:what's your name? OR +lastname: what's your name? OR ... A shorter way: (firstname OR lastname OR