Help migrating from 1.9.1 to 2.3.0 (Newbie)

2008-04-07 Thread JavaJava

Someone has left here and I was asked to upgrade to lucene 2.3.0.  Please
comment on the compile errors:

ERROR: rd.delete(t) > does this become: rd.deleteDocuments(t) ? (rd is
an IndexReader)

ERROR: Query q = MultiFieldQueryParser.parse(srch, names, new
StandardAnalyzer())

Do I change this to an array of strings like so:

Query q = MultiFieldQueryParser.parse(new String[] {srch}, names, new
StandardAnalyzer())  ??

ERROR: Field.Keyword(obj.getKeyFieldName(), obj.getKeyFieldValue())

Both are strings, what does this become?

ERROR: Field.Text(field.getName(), dispVal) 

Both are strings, what does this become?

Thank you.
-- 
View this message in context: 
http://www.nabble.com/Help-migrating-from-1.9.1-to-2.3.0-%28Newbie%29-tp16547527p16547527.html
Sent from the Lucene - Java Developer mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Help migrating from 1.9.1 to 2.3.0 (Newbie)

2008-04-08 Thread JavaJava

The last two errors were actually 'inside' the document.add() method call,
i.e..

document.add(Field.Keyword(obj.getKeyFieldName(), obj.getKeyFieldValue()));
document.add(Field.Text(field.getName(), dispVal));

How does this translate in 2.3.0 ??




-- 
View this message in context: 
http://www.nabble.com/Help-migrating-from-1.9.1-to-2.3.0-%28Newbie%29-tp16547527p16576481.html
Sent from the Lucene - Java Developer mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]