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

Scoring


Scoring in Lucene is an advanced subject, but it is important to at least have a basic understanding of it. We will discuss the factors influencing Lucene's default scoring model and where to look for diagnostic scoring information. If this overview is insufficient for your interest, then you can get the full details at http://lucene.apache.org/core/4_8_1/core/org/apache/lucene/search/package-summary.html#scoring.

The important thing to understand about scores is not to attribute much meaning to a score by itself; it's almost meaningless. The relative value of an individual score to the max score is much more meaningful. A document scored as 0.25 might be a great match or not, there's no telling, while in another query a document scoring 0.80 may actually not be a great match. But if you compare a score to another from the very same search and find it to be twice as large, then it is fair to say that the query matched this document twice as well. The factors influencing the score...