/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
using System;
using IndexReader = Lucene.Net.Index.IndexReader;
using FieldCache = Lucene.Net.Search.FieldCache;
namespace Lucene.Net.Search.Function
{
/// Expert: A base class for ValueSource implementations that retrieve values for
/// a single field from the FieldCache.
///
/// Fields used herein nust be indexed (doesn't matter if these fields are stored or not).
///
/// It is assumed that each such indexed field is untokenized, or at least has a single token in a document.
/// For documents with multiple tokens of the same field, behavior is undefined (It is likely that current
/// code would use the value of one of these tokens, but this is not guaranteed).
///
/// Document with no tokens in this field are assigned the Zero value.
///
///
/// 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.
///
/// NOTE: with the switch in 2.9 to segment-based
/// searching, if is invoked with a
/// composite (multi-segment) reader, this can easily cause
/// double RAM usage for the values in the FieldCache. It's
/// best to switch your application to pass only atomic
/// (single segment) readers to this API.
///
[Serializable]
public abstract class FieldCacheSource:ValueSource
{
private System.String field;
/// Create a cached field source for the input field.
protected FieldCacheSource(System.String field)
{
this.field = field;
}
/* (non-Javadoc) Return cached DocValues for input field and reader.
/// FieldCache so that values of a field are loaded once per reader (RAM allowing)
///
/// Field for which values are required.
///
///
///
public abstract DocValues GetCachedFieldValues(FieldCache cache, System.String field, IndexReader reader);
/*(non-Javadoc) Check if equals to another , already knowing that cache and field are equal.
///
///
public abstract bool CachedFieldSourceEquals(FieldCacheSource other);
/// Return a hash code of a , without the hash-codes of the field
/// and the cache (those are taken care of elsewhere).
///
///
///
public abstract int CachedFieldSourceHashCode();
}
}