Sign In Start Free Trial
Account

Add to playlist

Create a Playlist

Modal Close icon
You need to login to use this feature.
  • Lucene 4 Cookbook
  • Toc
  • feedback
Lucene 4 Cookbook

Lucene 4 Cookbook

By : Edwood Ng, Vineeth Mohan
3.2 (5)
close
Lucene 4 Cookbook

Lucene 4 Cookbook

3.2 (5)
By: Edwood Ng, Vineeth Mohan

Overview of this book

This book is for software developers who are new to Lucene and who want to explore the more advanced topics to build a search engine. Knowledge of Java is necessary to follow the code samples. You will learn core concepts, best practices, and also advanced features, in order to build an effective search application.
Table of Contents (11 chapters)
close
10
Index

Specifying sort logic


Lucene, by default, scores every search results and the results are sorted in descending order of the relevance scores. The scoring ensures that the most relevant results are shown before the less relevant ones. This generally works great for most applications. However, sometimes user may prefer to sort results based on other criteria. For example, in an e-commerce website, user may prefer to sort results by price. This type of a scenario brings us to the topic of specifying sort in Lucene.

To specify sort, we first need to create one or more SortField objects. Then, we create a sort object that wraps around SortField(s) to pass along to IndexSearcher's search method. The Sort class itself has two static Sort:

  • RELEVANCE: This is sorting by relevance score, which is done by default (without specifying Sort).

  • INDEX ORDER: This is sorting by index order, which is the natural order of the documents in the index.

The SortField class can be instantiated with a Field name and...

bookmark search playlist font-size

Change the font size

margin-width

Change margin width

day-mode

Change background colour

Close icon Search
Country selected

Close icon Your notes and bookmarks

Delete Bookmark

Modal Close icon
Are you sure you want to delete it?
Cancel
Yes, Delete