I store document in a field "content" field defiend as follow in schema.xml <field name="content" type="text" indexed="true" stored="true" multiValued="true"/>
and following in solrconfig.xml <requestHandler name="/update/extract" class="org.apache.solr.handler.extraction.ExtractingRequestHandler"> <lst name="defaults"> <str name="map.content">content</str> <str name="defaultField">content</str> </lst> </requestHandler> I want to store only "content" into this field but it store other meta data of a document e.g. "Author", "timestamp", "document type" etc. how can I ask solr to store only body of document into this field and not other meta data? Thanks, -- View this message in context: http://old.nabble.com/store-content-only-of-documents-tp26803101p26803101.html Sent from the Solr - User mailing list archive at Nabble.com.