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

Commit, rollback, and index optimization


The commitWithin parameter that we have been passing as arguments to our addDocument() function specifies the time for the commit to happen for this add document operation. This leaves the control of when to do the commit to Solr itself. Solr optimizes the number of commits to a minimum while still fulfilling the update latency requirements.

The rollback option is exposed via the addRollback() function. Rollback can be done since the last commit and before current commit. Once a commit has been done, the changes cannot be rolled back.

$rollbackQuery = $client->createUpdate();
$rollbackQuery->addRollback();

Index optimization is one of the tasks that is not necessarily required. But an optimized index has better performance than a non-optimized index. To optimize an index using the PHP code, we can use the addOptimize(boolean $softCommit, boolean $waitSearcher, int $maxSegments) function. It has parameters to enable soft commit, wait until a new...

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}