FileDocCategorySizeDatePackage
FieldScoreQuery.javaAPI DocApache Lucene 2.2.05196Sat Jun 16 22:20:34 BST 2007org.apache.lucene.search.function

FieldScoreQuery

public class FieldScoreQuery extends ValueSourceQuery
A query that scores each document as the value of the numeric input field.

The query matches all documents, and scores each document according to the numeric value of that field.

It is assumed, and expected, that:

  • The field used here is indexed, and has exactly one token in every scored document.
  • Best if this field is un_tokenized.
  • That token is parsable to the selected type.

Combining this query in a FunctionQuery allows much freedom in affecting document scores. Note, that with this freedom comes responsibility: it is more than likely that the default Lucene scoring is superior in quality to scoring modified as explained here. However, in some cases, and certainly for research experiments, this capability may turn useful.

When contructing this query, select the appropriate type. That type should match the data stored in the field. So in fact the "right" type should be selected before indexing. Type selection has effect on the RAM usage:

  • {@link Type#BYTE} consumes 1 * maxDocs bytes.
  • {@link Type#SHORT} consumes 2 * maxDocs bytes.
  • {@link Type#INT} consumes 4 * maxDocs bytes.
  • {@link Type#FLOAT} consumes 8 * maxDocs bytes.

Caching: Values for the numeric field are loaded once and cached in memory for further use with the same IndexReader. To take advantage of this, it is extremely important to reuse index-readers or index-searchers, otherwise, for instance if for each query a new index reader is opened, large penalties would be payd for loading the field values into memory over and over again!

WARNING: The status of the search.function package is experimental. The APIs introduced here might change in the future and will not be supported anymore in such a case.

Fields Summary
Constructors Summary
public FieldScoreQuery(String field, Type type)
Create a FieldScoreQuery - a query that scores each document as the value of the numeric input field.

The type param tells how to parse the field string values into a numeric score value.

param
field the numeric field to be used.
param
type the type of the field: either {@link Type#BYTE}, {@link Type#SHORT}, {@link Type#INT}, or {@link Type#FLOAT}.

    super(getValueSource(field,type));
  
Methods Summary
private static org.apache.lucene.search.function.ValueSourcegetValueSource(java.lang.String field, org.apache.lucene.search.function.FieldScoreQuery$Type type)

    if (type == Type.BYTE) {
      return new ByteFieldSource(field);
    }
    if (type == Type.SHORT) {
      return new ShortFieldSource(field);
    }
    if (type == Type.INT) {
      return new IntFieldSource(field);
    }
    if (type == Type.FLOAT) {
      return new FloatFieldSource(field);
    }
    throw new IllegalArgumentException(type+" is not a known Field Score Query Type!");