Re: Store the documents content in the index

2011-07-19 Thread starz10de
thanks for your kind answer -- View this message in context: http://lucene.472066.n3.nabble.com/Store-the-documents-content-in-the-index-tp3176703p3182340.html Sent from the Lucene - Java Users mailing list archive at Nabble.com. --

Re: Store the documents content in the index

2011-07-18 Thread Andrew Kane
Some file systems might be slow if too many files are in one folder, try splitting them into subfolders... Andrew. On Sun, Jul 17, 2011 at 8:40 AM, starz10de wrote: > HI, > > Currently my text source files (800 000) are stored in folder which make > retrieving it by many users some how slow. I

Re: Store the documents content in the index

2011-07-18 Thread Erick Erickson
It's certainly possible as others have said, but don't be surprised if it's not performant. At root, you still have a disk out there that's being used for fetching the data. Simply moving it from fetching individual files to fetching that data from the index doesn't change that fundamental fact. B

Re: Store the documents content in the index

2011-07-18 Thread starz10de
thanks for your reply -- View this message in context: http://lucene.472066.n3.nabble.com/Store-the-documents-content-in-the-index-tp3176703p3180435.html Sent from the Lucene - Java Users mailing list archive at Nabble.com. - To

RE: Store the documents content in the index

2011-07-18 Thread starz10de
thanks for your reply -- View this message in context: http://lucene.472066.n3.nabble.com/Store-the-documents-content-in-the-index-tp3176703p3180432.html Sent from the Lucene - Java Users mailing list archive at Nabble.com. - To

RE: Store the documents content in the index

2011-07-18 Thread Jagdish Vasani
Yes..you can Store Text file content by saying that field store-Field.Store.YES.same time you can also index it by saying Field.Index.ANALYZED as another parameter of Field class contructor. Thanks, Jagdish -Original Message- From: starz10de [mailto:farag_ah...@yahoo.com] Sent: Sunday,

Re: Store the documents content in the index

2011-07-18 Thread Ian Lea
Of course. See the javadocs for Field, Field.Store and Field.Index. -- Ian. On Sun, Jul 17, 2011 at 1:40 PM, starz10de wrote: > HI, > > Currently my text source files (800 000) are stored in folder which make > retrieving it by many users some how slow. I heard it might be possible that > the