Book Image

Apache Solr Enterprise Search Server - Third Edition

By : David Smiley, Eric Pugh, Kranti Parisa, Matt Mitchell
Book Image

Apache Solr Enterprise Search Server - Third Edition

By: David Smiley, Eric Pugh, Kranti Parisa, Matt Mitchell

Overview of this book

<p>Solr Apache is a widely popular open source enterprise search server that delivers powerful search and faceted navigation features—features that are elusive with databases. Solr supports complex search criteria, faceting, result highlighting, query-completion, query spell-checking, relevancy tuning, geospatial searches, and much more.</p> <p>This book is a comprehensive resource for just about everything Solr has to offer, and it will take you from first exposure to development and deployment in no time. Even if you wish to use Solr 5, you should find the information to be just as applicable due to Solr's high regard for backward compatibility. The book includes some useful information specific to Solr 5.</p>
Table of Contents (19 chapters)
Apache Solr Enterprise Search Server Third Edition
Credits
About the Authors
About the Reviewers
www.PacktPub.com
Preface
Index

Update request processors


No matter how you choose to import data, there is a final configuration point within Solr that allows manipulation of the imported data before it gets indexed. The Solr request handlers that update data put documents on an update request processor chain. If you search solrconfig.xml for updateRequestProcessorChain, then you'll see an example.

You can specify which chain to use on the update request with the update.chain parameter. It could be useful, but you'll probably always use one chain. If no chain is specified, you get a default chain of LogUpdateProcessorFactory and RunUpdateProcessorFactory. The following are the possible update request processors that you can choose from. Their names all end in UpdateProcessorFactory.

  • SignatureUpdateProcessorFactory: This generates a hash ID value based on the field values you specify. If you want to deduplicate your data (that is, you don't want to add the same data twice accidentally), then this will do that for you. For...