if I understand correctly, each document is 50 megs and does a document represent one record (the whole 50 megs) or is it a collection of records?
if your document is a collection of records (XML tree) then you can index a single record at a time upon it's change. But if each document represents one logical block than you'll have to index the whole thing every time it changes. Weekly changes don't sound too bad, you can get away with re-indexing it at some dead time in the middle of the night so it doesn't slow down peoples searches while indexing Nader Henein -----Original Message----- From: jamin rubio [mailto:[EMAIL PROTECTED]] Sent: Monday, September 09, 2002 2:11 PM To: 'Lucene Users List' Subject: RE: XML indexing in lucene Hi, My docs can be 50 meg et and the update can be weekly schedule... -----Message d'origine----- De : Nader Henein [mailto:[EMAIL PROTECTED]] Envoy� : vendredi 23 ao�t 2002 13:06 � : [EMAIL PROTECTED] Objet : Re: XML indexing in lucene I don't think you can do that, but you should index the whole document (you'd be amazed how fast it is) I imagine you're documents are large and that's why you want to partially index but I would try the whole thing first, how large are your docments and how often do you invision updating the index Nader Henein On Wed, 21 August 2002, "jamin rubio" wrote: > > Hi all, > > I 'm a newbie to lucene, and i have a question . Is > that possible that > Lucene just indexed a modified field in a index > without re-indexing all the > document ? Can Lucene do Partial Indexing ? > > Cheers > > > -- > To unsubscribe, e-mail: > <mailto:[EMAIL PROTECTED]> > For additional commands, e-mail: > <mailto:[EMAIL PROTECTED]> The information contained above is proprietary to BAYT.COM and confidential. -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]> -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]> -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
