On Wed, Aug 25, 2010 at 12:51 PM, satya swaroop <sswaro...@gmail.com> wrote:
> Hi all, > i indexed nearly 100 java pdf files which are of large size(min 1MB). > The solr is showing the results with the entire content that it indexed > which is taking time to show the results.. cant we reduce the content it > shows or can i just have the file names and ids instead of the entire > content in the results.... > > Change the fields in your schema to stored="false" so that the content in those fields is indexed but not returned. Alternately, you can choose to limit the fields to be returned in the response using the "fl" parameter. -- Regards, Shalin Shekhar Mangar.