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

Your first search – a walk-through


We've got a lot of data indexed, and now it's time to actually use Solr for what it is intended to do—searching, also known as querying. When your application interacts with Solr, it will more than likely use HTTP, either directly via common APIs or indirectly through one of Solr's client APIs. However, as we demonstrate Solr's capabilities in this chapter, we'll use Solr's web-based admin interface. In Chapter 1, Quick Starting Solr, we covered the basics of Solr's admin interface. To use the admin query interface, click on the mbartists core link in the left navigation column, and then click Query.

You will see a window as shown in the following screenshot, after clicking on the Query link:

The URL is http://localhost:8983/solr/#/mbartists/query. This form has a subset of the options you might specify to run a search. Let's do a quick search. In the q box, we'll leave the default of *:* (an asterisk, colon, and then another asterisk). Admittedly, that is...