On Tue, Mar 31, 2009 at 5:52 PM, Radha C. <cra...@ceiindia.com> 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 probably need to store, fetch and associate an external field yourself. So if you are storing your large field in a database, you can store the primary key in the solr document and fetch/display that field from the database yourself. How big are your fields? Are you noticing a slowdown? Can compressed fields help? Also note that by default solr returns all the stored fields. But you can specify the "fl" parameter yourself to limit what gets returned. -- Regards, Shalin Shekhar Mangar.