RE: Lucene refresh index function (incremental indexing).

2003-11-25 Thread Zhou, Oliver
, November 24, 2003 10:07 PM To: 'Lucene Users List' Subject: RE: Lucene refresh index function (incremental indexing). Does it support indexing the contents of pdf files? I have found one project called PDFBox that can be integrated with Lucene to search inside of the pdf files. Currently, Lucene can

RE: Lucene refresh index function (incremental indexing).

2003-11-25 Thread Pleasant, Tracy
] Sent: Monday, November 24, 2003 11:07 PM To: 'Lucene Users List' Subject: RE: Lucene refresh index function (incremental indexing). Does it support indexing the contents of pdf files? I have found one project called PDFBox that can be integrated with Lucene to search inside of the pdf files

RE: Lucene refresh index function (incremental indexing).

2003-11-25 Thread Ben Litchfield
Message- From: Tun Lin [mailto:[EMAIL PROTECTED] Sent: Monday, November 24, 2003 10:07 PM To: 'Lucene Users List' Subject: RE: Lucene refresh index function (incremental indexing). Does it support indexing the contents of pdf files? I have found one project called PDFBox that can

RE: Lucene refresh index function (incremental indexing).

2003-11-25 Thread Zhou, Oliver
, Oliver -Original Message- From: Ben Litchfield [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 25, 2003 9:45 AM To: Lucene Users List Subject: RE: Lucene refresh index function (incremental indexing). Yes, just add the log4j configuration. The easiest way to do

RE: Lucene refresh index function (incremental indexing).

2003-11-25 Thread Pleasant, Tracy
. Anybody knows what's going on? Thanks, Oliver -Original Message- From: Ben Litchfield [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 25, 2003 9:45 AM To: Lucene Users List Subject: RE: Lucene refresh index function (incremental indexing). Yes, just add the log4j configuration

RE: Lucene refresh index function (incremental indexing).

2003-11-25 Thread Ben Litchfield
Message- From: Ben Litchfield [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 25, 2003 9:45 AM To: Lucene Users List Subject: RE: Lucene refresh index function (incremental indexing). Yes, just add the log4j configuration. The easiest way to do that is as a system parameter like

RE: Lucene refresh index function (incremental indexing).

2003-11-25 Thread Tun Lin
To: Lucene Users List; [EMAIL PROTECTED] Subject: RE: Lucene refresh index function (incremental indexing). I was able to get PDFBox to work with my JSP webpages. I think you will have to in a way write your own code to do the PDF files (while still calling the Lucene functions) doc

RE: Lucene refresh index function (incremental indexing).

2003-11-24 Thread Tun Lin
the indexes on its own? -Original Message- From: Victor Hadianto [mailto:[EMAIL PROTECTED] Sent: Monday, November 24, 2003 1:07 PM To: Lucene Users List Subject: Re: Lucene refresh index function (incremental indexing). Ah .. ic, But you don't need to do that even if you can do it. Lucene

Re: Lucene refresh index function (incremental indexing).

2003-11-24 Thread Victor Hadianto
index size reached hundreds of megabytes. victor -Original Message- From: Victor Hadianto [mailto:[EMAIL PROTECTED] Sent: Monday, November 24, 2003 1:07 PM To: Lucene Users List Subject: Re: Lucene refresh index function (incremental indexing). Ah .. ic, But you don't need to do

Re: Lucene refresh index function (incremental indexing).

2003-11-24 Thread Doug Cutting
Tun Lin wrote: These are the steps I took: 1) I compile all the files in a particular directory using the command: java org.apache.lucene.demo.IndexHTML -create -index c:\\index .. , putting all the indexed files in c:\\index. 2) Everytime, I added an additional file in that directory. I need

RE: Lucene refresh index function (incremental indexing).

2003-11-24 Thread Tun Lin
Will the final version 1.3 include an application that does the incremental updates automatically? -Original Message- From: Doug Cutting [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 25, 2003 5:01 AM To: Lucene Users List Subject: Re: Lucene refresh index function (incremental

RE: Lucene refresh index function (incremental indexing).

2003-11-24 Thread Tun Lin
] Sent: Tuesday, November 25, 2003 5:01 AM To: Lucene Users List Subject: Re: Lucene refresh index function (incremental indexing). Tun Lin wrote: These are the steps I took: 1) I compile all the files in a particular directory using the command: java org.apache.lucene.demo.IndexHTML -create

Re: Lucene refresh index function (incremental indexing).

2003-11-23 Thread Victor Hadianto
IndexSearcher to reflect the new changes into the your search result. /victor -Original Message- From: Dror Matalon [mailto:[EMAIL PROTECTED] Sent: Sunday, November 23, 2003 4:44 AM To: Lucene Users List Subject: Re: Lucene refresh index function (incremental indexing). Hi, It's not clear

RE: Lucene refresh index function (incremental indexing).

2003-11-23 Thread Tun Lin
in that particular directory? Please advise. -Original Message- From: Victor Hadianto [mailto:[EMAIL PROTECTED] Sent: Monday, November 24, 2003 12:36 PM To: Lucene Users List Subject: Re: Lucene refresh index function (incremental indexing). I delete the old ones and add them again manually

Re: Lucene refresh index function (incremental indexing).

2003-11-23 Thread Victor Hadianto
' [EMAIL PROTECTED] Sent: Monday, November 24, 2003 3:45 PM Subject: RE: Lucene refresh index function (incremental indexing). Hi, Thanks for your reply. What if I add a new document into the directory that I have compiled using the following command: java org.apache.lucene.demo.IndexHTML

Re: Lucene refresh index function (incremental indexing).

2003-11-22 Thread Dror Matalon
Hi, It's not clear what you mean when you say refresh indexes or re-compiling. If you're adding new documents just use the add() method. If you are replacing documents, you need to first delete the old ones and then add them again. Look at the mailing list archive for this, since it's been