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

Facet by query


We can use a facet query in addition to the normal query to get counts with respect to the facet query. The counts are not affected by the main query and filter queries can be excluded from it. Let's see the code to get counts of facets where genre is fantasy and also see an example of excluding a filter query.

Let us first create a query to select all books in our index.

$query->setQuery('cat:book');

Create a filter query for books that are in stock and tag it.

$fquery = $query->createFilterQuery('inStock');
$fquery->setQuery('inStock:true');
$fquery->addTag('inStockTag');

Get the facetset component from our query using the following code:

$facetset = $query->getFacetSet();

Create a facet by query to count the number of books of a particular genre. Also, exclude the filter query we added earlier.

$facetqry = $facetset->createFacetQuery('genreFantasy');
$facetqry->setQuery('genre_s: fantasy');
$facetqry->addExclude('inStockTag');

Let us add another facet query...

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}