Re: Indexing with Lucene 1.4.3

2004-12-17 Thread Bernhard Messer
That looks right to me, assuming you have done an optimize. All of your index segments are merged into the one .cfs file (which is large, right?). Try searching -- it should work. Chuck is right, the index looks fine and will be searchable. Since lucene version 1.4, the index is stored per

Re: Indexing with Lucene 1.4.3

2004-12-17 Thread Hetan Shah
Thanks Chuck, I now understand why I see only one file. Another question is do I have to specify somewhere in my code or some configuration setting that I would now be using a compound file format (.cfs file) for index. I have an application that was working in version 1.3-final till I moved to

Re: Indexing with Lucene 1.4.3

2004-12-17 Thread Otis Gospodnetic
The only place where you have to specify that you are using the compound index format is on IndexWriter instance. Nothing needs to be done at search time on IndexSearcher. Otis --- Hetan Shah [EMAIL PROTECTED] wrote: Thanks Chuck, I now understand why I see only one file. Another question

RE: Indexing with Lucene 1.4.3

2004-12-16 Thread Chuck Williams
That looks right to me, assuming you have done an optimize. All of your index segments are merged into the one .cfs file (which is large, right?). Try searching -- it should work. Chuck -Original Message- From: Hetan Shah [mailto:[EMAIL PROTECTED] Sent: Thursday, December 16,

RE: Indexing with Lucene 1.4.3

2004-12-16 Thread Karthik N S
Hi there Apologies. If u are using the IndexHTML from the demo.jar package which is abvaliable from Lucene1.4.3.zip Then u bettter look at the File Extensions of u'r file's,they may be filtered out of the indexing process due to this code present in IndexHTML.java }