Basic Usage

A boost query wraps around another query to amplify its scoring impact, without altering the set of matched documents.

SELECT * FROM search_idx.search(
	query => paradedb.boost(query => paradedb.all(), boost => 1.5)
);
boost
required

The factor by which to multiply the score of each result.

query
required

The query to perform.