http://lucene.apache.org/java/3_0_3/fileformats.html will tell you all
you need to know about what is stored where and how.

In general, the speed of searching i.e. finding matching docs will not
be affected by the number of stored fields but retrieving data from
lots of stored fields will certainly take longer than retrieving data
from fewer stored fields.

Only index the fields you need to search on and only store the fields
you need to retrieve.  If you only need to retrieve some of the stored
fields use a FieldSelector.


http://wiki.apache.org/lucene-java/ImproveSearchingSpeed has good info
on making searching fast.


--
Ian.

On Thu, Feb 17, 2011 at 10:39 AM, suman.holani <suman.hol...@zapak.co.in> wrote:
> Hello,
>
>
>
> I am little confused on the stored and index part of lucene
>
>
>
> How it actually stores the indexed field and stored field
>
> Is it that for every field indexed , all the store fields added .I mean do
> we create diff indexes for every indexed field ,replicating the stored field
> in each of them.
>
>
>
>
>
> I have read that less the number of fields in document , more will b the
> faster search would be.The number of fields is actual number of fields or
> the indexed fields?
>
> So , in that case if we use  STORE.YES and INDEX.NO  for major non
> searchable fields ,will searching  be faster.
>
>
>
>
>
>
>
> Regards,
>
> Suman
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org
For additional commands, e-mail: java-user-h...@lucene.apache.org

Reply via email to