Search icon
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Apache Solr PHP Integration

You're reading from  Apache Solr PHP Integration

Product type Book
Published in Nov 2013
Publisher Packt
ISBN-13 9781782164920
Pages 118 pages
Edition 1st Edition
Languages
Author (1):
Jayant Kumar Jayant Kumar
Profile icon Jayant Kumar

Table of Contents (15) Chapters

Apache Solr PHP Integration
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Installing and Integrating Solr and PHP Inserting, Updating, and Deleting Documents from Solr Select Query on Solr and Query Modes (DisMax/eDisMax) Advanced Queries – Filter Queries and Faceting Highlighting Results Using PHP and Solr Debug and Stats Component Spell Check in Solr Advanced Solr – Grouping, the MoreLikeThis Query, and Distributed Search Index

Solr relevance ranking


When a query is passed to Solr, it is converted to an appropriate query string that is then executed by Solr. For each document in the result, Solr calculates the relevance score according to which the document is sorted. By default higher scoring documents are given priority in the result.

The Solr relevancy algorithm is known as the tf-idf model where tf stands for term frequency and idf stands for inverse document frequency. The meaning of the parameters used in relevance calculation so we can interpret the output of debug query are explained as follows:

  • tf: The term frequency is the frequency with which a term appears in a document. Higher term frequency results in a high document score.

  • idf: The inverse document frequency is the inverse of the number of documents in which the term appears. It indicates the rarity of the term across all documents in the index. Documents having a rare term are scored higher.

  • coord: It is the coordination factor that says how many...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime}