RE: indexed fields vs stored fields

2009-03-31 Thread Radha C.
Thanks, We have tons of records with CLOB fields. _ From: Shalin Shekhar Mangar [mailto:shalinman...@gmail.com] Sent: Tuesday, March 31, 2009 8:21 PM To: solr-user@lucene.apache.org; cra...@ceiindia.com Subject: Re: indexed fields vs stored fields On Tue, Mar 31, 2009 at 5:52 PM

Re: indexed fields vs stored fields

2009-03-31 Thread Shalin Shekhar Mangar
On Tue, Mar 31, 2009 at 5:52 PM, Radha C. wrote: > > Suppose If I have an large field and I am not storing the field in solr due > to performance factor, How can I handle this field or How can I get the > value of the field through search ? How to store large fields outside of > Solr? You'd pro

RE: indexed fields vs stored fields

2009-03-31 Thread Radha C.
...@gmail.com] Sent: Tuesday, March 31, 2009 5:41 PM To: solr-user@lucene.apache.org; cra...@ceiindia.com Subject: Re: indexed fields vs stored fields indexed = can be searched (mean you can use this to query). This undergoes tokenization filter etc stored = can be retrieved . No modification to the

Re: indexed fields vs stored fields

2009-03-31 Thread Noble Paul നോബിള്‍ नोब्ळ्
indexed = can be searched (mean you can use this to query). This undergoes tokenization filter etc stored = can be retrieved . No modification to the data. This is stored verbatim On Tue, Mar 31, 2009 at 4:39 PM, Radha C. wrote: > Hello List, > > I know about indexing fields but little unclear a

indexed fields vs stored fields

2009-03-31 Thread Radha C.
Hello List, I know about indexing fields but little unclear about the difference between index field and stored field. Can anyone explain me whta does mean by index and stored fields? and What does mean by storing large fields outside of Solr (need to set store="false" in schema.xml ) ? Thanks