Solr spellchecker field

2010-05-28 Thread Dejan Noveski
Hi, Does the field that is used for spellchecker indexing need to be stored and/or indexed? These fields became fairly large in my index, and php wont parse/decode the documents returned. -- -- Dejan Noveski Web Developer dr.m...@gmail.com Twitter: http://twitter.com/dekomote | LinkedIn:

Re: Solr spellchecker field

2010-05-28 Thread Erik Hatcher
A field used to build a spellcheck index only needs to be indexed, not stored. But, your PHP issue could be alleviated anyway by simply customizing the fl parameter and excluding the large stored field. This is often desirable for large fields that are never needed fully in the UI, but

Re: Solr spellchecker field

2010-05-28 Thread Dejan Noveski
Thank you very much! On Fri, May 28, 2010 at 10:57 AM, Erik Hatcher erik.hatc...@gmail.comwrote: A field used to build a spellcheck index only needs to be indexed, not stored. But, your PHP issue could be alleviated anyway by simply customizing the fl parameter and excluding the large

Re: Solr spellchecker field

2010-05-28 Thread Israel Ekpo
Dejan, How are you making the calls from PHP to Solr? I am curious to know why the documents could not be parsed On Fri, May 28, 2010 at 5:00 AM, Dejan Noveski dr.m...@gmail.com wrote: Thank you very much! On Fri, May 28, 2010 at 10:57 AM, Erik Hatcher erik.hatc...@gmail.com wrote: A