Uses of Interface
org.elasticsearch.index.cache.field.data.FieldDataCache

Packages that use FieldDataCache
org.elasticsearch.index.cache   
org.elasticsearch.index.cache.field.data.none   
org.elasticsearch.index.cache.field.data.resident   
org.elasticsearch.index.cache.field.data.soft   
org.elasticsearch.index.cache.field.data.support   
org.elasticsearch.index.field.data   
org.elasticsearch.index.field.data.bytes   
org.elasticsearch.index.field.data.doubles   
org.elasticsearch.index.field.data.floats   
org.elasticsearch.index.field.data.ints   
org.elasticsearch.index.field.data.longs   
org.elasticsearch.index.field.data.shorts   
org.elasticsearch.index.field.data.strings   
org.elasticsearch.index.field.data.support   
org.elasticsearch.index.mapper.core   
org.elasticsearch.index.mapper.geo   
org.elasticsearch.index.mapper.internal   
org.elasticsearch.index.mapper.ip   
org.elasticsearch.index.search   
org.elasticsearch.index.search.geo   
org.elasticsearch.script   
org.elasticsearch.search.facet.geodistance   
org.elasticsearch.search.internal   
org.elasticsearch.search.lookup   
 

Uses of FieldDataCache in org.elasticsearch.index.cache
 

Methods in org.elasticsearch.index.cache that return FieldDataCache
 FieldDataCache IndexCache.fieldData()
           
 

Constructors in org.elasticsearch.index.cache with parameters of type FieldDataCache
IndexCache(Index index, Settings indexSettings, FilterCache filterCache, FieldDataCache fieldDataCache, QueryParserCache queryParserCache, IdCache idCache, BloomCache bloomCache)
           
 

Uses of FieldDataCache in org.elasticsearch.index.cache.field.data.none
 

Classes in org.elasticsearch.index.cache.field.data.none that implement FieldDataCache
 class NoneFieldDataCache
           
 

Uses of FieldDataCache in org.elasticsearch.index.cache.field.data.resident
 

Classes in org.elasticsearch.index.cache.field.data.resident that implement FieldDataCache
 class ResidentFieldDataCache
           
 

Uses of FieldDataCache in org.elasticsearch.index.cache.field.data.soft
 

Classes in org.elasticsearch.index.cache.field.data.soft that implement FieldDataCache
 class SoftFieldDataCache
           
 

Uses of FieldDataCache in org.elasticsearch.index.cache.field.data.support
 

Classes in org.elasticsearch.index.cache.field.data.support that implement FieldDataCache
 class AbstractConcurrentMapFieldDataCache
           
 

Uses of FieldDataCache in org.elasticsearch.index.field.data
 

Methods in org.elasticsearch.index.field.data with parameters of type FieldDataCache
 FieldDataType.ExtendedFieldComparatorSource FieldDataType.newFieldComparatorSource(FieldDataCache cache, String missing)
           
 

Uses of FieldDataCache in org.elasticsearch.index.field.data.bytes
 

Methods in org.elasticsearch.index.field.data.bytes with parameters of type FieldDataCache
 FieldDataType.ExtendedFieldComparatorSource ByteFieldDataType.newFieldComparatorSource(FieldDataCache cache, String missing)
           
 

Constructors in org.elasticsearch.index.field.data.bytes with parameters of type FieldDataCache
ByteFieldDataComparator(int numHits, String fieldName, FieldDataCache fieldDataCache)
           
ByteFieldDataMissingComparator(int numHits, String fieldName, FieldDataCache fieldDataCache, byte missingValue)
           
 

Uses of FieldDataCache in org.elasticsearch.index.field.data.doubles
 

Methods in org.elasticsearch.index.field.data.doubles with parameters of type FieldDataCache
 FieldDataType.ExtendedFieldComparatorSource DoubleFieldDataType.newFieldComparatorSource(FieldDataCache cache, String missing)
           
 

Constructors in org.elasticsearch.index.field.data.doubles with parameters of type FieldDataCache
DoubleFieldDataComparator(int numHits, String fieldName, FieldDataCache fieldDataCache)
           
DoubleFieldDataMissingComparator(int numHits, String fieldName, FieldDataCache fieldDataCache, double missingValue)
           
 

Uses of FieldDataCache in org.elasticsearch.index.field.data.floats
 

Methods in org.elasticsearch.index.field.data.floats with parameters of type FieldDataCache
 FieldDataType.ExtendedFieldComparatorSource FloatFieldDataType.newFieldComparatorSource(FieldDataCache cache, String missing)
           
 

Constructors in org.elasticsearch.index.field.data.floats with parameters of type FieldDataCache
FloatFieldDataComparator(int numHits, String fieldName, FieldDataCache fieldDataCache)
           
FloatFieldDataMissingComparator(int numHits, String fieldName, FieldDataCache fieldDataCache, float missingValue)
           
 

Uses of FieldDataCache in org.elasticsearch.index.field.data.ints
 

Methods in org.elasticsearch.index.field.data.ints with parameters of type FieldDataCache
 FieldDataType.ExtendedFieldComparatorSource IntFieldDataType.newFieldComparatorSource(FieldDataCache cache, String missing)
           
 

Constructors in org.elasticsearch.index.field.data.ints with parameters of type FieldDataCache
IntFieldDataComparator(int numHits, String fieldName, FieldDataCache fieldDataCache)
           
IntFieldDataMissingComparator(int numHits, String fieldName, FieldDataCache fieldDataCache, int missingValue)
           
 

Uses of FieldDataCache in org.elasticsearch.index.field.data.longs
 

Methods in org.elasticsearch.index.field.data.longs with parameters of type FieldDataCache
 FieldDataType.ExtendedFieldComparatorSource LongFieldDataType.newFieldComparatorSource(FieldDataCache cache, String missing)
           
 

Constructors in org.elasticsearch.index.field.data.longs with parameters of type FieldDataCache
LongFieldDataComparator(int numHits, String fieldName, FieldDataCache fieldDataCache)
           
LongFieldDataMissingComparator(int numHits, String fieldName, FieldDataCache fieldDataCache, long missingValue)
           
 

Uses of FieldDataCache in org.elasticsearch.index.field.data.shorts
 

Methods in org.elasticsearch.index.field.data.shorts with parameters of type FieldDataCache
 FieldDataType.ExtendedFieldComparatorSource ShortFieldDataType.newFieldComparatorSource(FieldDataCache cache, String missing)
           
 

Constructors in org.elasticsearch.index.field.data.shorts with parameters of type FieldDataCache
ShortFieldDataComparator(int numHits, String fieldName, FieldDataCache fieldDataCache)
           
ShortFieldDataMissingComparator(int numHits, String fieldName, FieldDataCache fieldDataCache, short missingValue)
           
 

Uses of FieldDataCache in org.elasticsearch.index.field.data.strings
 

Fields in org.elasticsearch.index.field.data.strings declared as FieldDataCache
protected  FieldDataCache StringValFieldDataComparator.fieldDataCache
           
 

Methods in org.elasticsearch.index.field.data.strings with parameters of type FieldDataCache
 FieldDataType.ExtendedFieldComparatorSource StringFieldDataType.newFieldComparatorSource(FieldDataCache cache, String missing)
           
 

Constructors in org.elasticsearch.index.field.data.strings with parameters of type FieldDataCache
StringOrdValFieldDataComparator(int numHits, String field, int sortPos, boolean reversed, FieldDataCache fieldDataCache)
           
StringValFieldDataComparator(int numHits, String fieldName, FieldDataCache fieldDataCache)
           
 

Uses of FieldDataCache in org.elasticsearch.index.field.data.support
 

Fields in org.elasticsearch.index.field.data.support declared as FieldDataCache
protected  FieldDataCache NumericFieldDataComparator.fieldDataCache
           
 

Constructors in org.elasticsearch.index.field.data.support with parameters of type FieldDataCache
NumericFieldDataComparator(String fieldName, FieldDataCache fieldDataCache)
           
 

Uses of FieldDataCache in org.elasticsearch.index.mapper.core
 

Methods in org.elasticsearch.index.mapper.core with parameters of type FieldDataCache
 org.apache.lucene.search.Filter FloatFieldMapper.rangeFilter(FieldDataCache fieldDataCache, String lowerTerm, String upperTerm, boolean includeLower, boolean includeUpper, QueryParseContext context)
           
 org.apache.lucene.search.Filter ShortFieldMapper.rangeFilter(FieldDataCache fieldDataCache, String lowerTerm, String upperTerm, boolean includeLower, boolean includeUpper, QueryParseContext context)
           
 org.apache.lucene.search.Filter LongFieldMapper.rangeFilter(FieldDataCache fieldDataCache, String lowerTerm, String upperTerm, boolean includeLower, boolean includeUpper, QueryParseContext context)
           
 org.apache.lucene.search.Filter IntegerFieldMapper.rangeFilter(FieldDataCache fieldDataCache, String lowerTerm, String upperTerm, boolean includeLower, boolean includeUpper, QueryParseContext context)
           
abstract  org.apache.lucene.search.Filter NumberFieldMapper.rangeFilter(FieldDataCache fieldDataCache, String lowerTerm, String upperTerm, boolean includeLower, boolean includeUpper, QueryParseContext context)
          A range filter based on the field data cache.
 org.apache.lucene.search.Filter DateFieldMapper.rangeFilter(FieldDataCache fieldDataCache, String lowerTerm, String upperTerm, boolean includeLower, boolean includeUpper, QueryParseContext context)
           
 org.apache.lucene.search.Filter ByteFieldMapper.rangeFilter(FieldDataCache fieldDataCache, String lowerTerm, String upperTerm, boolean includeLower, boolean includeUpper, QueryParseContext context)
           
 org.apache.lucene.search.Filter DoubleFieldMapper.rangeFilter(FieldDataCache fieldDataCache, String lowerTerm, String upperTerm, boolean includeLower, boolean includeUpper, QueryParseContext context)
           
 

Uses of FieldDataCache in org.elasticsearch.index.mapper.geo
 

Methods in org.elasticsearch.index.mapper.geo with parameters of type FieldDataCache
 FieldDataType.ExtendedFieldComparatorSource GeoPointFieldDataType.newFieldComparatorSource(FieldDataCache cache, String missing)
           
 

Uses of FieldDataCache in org.elasticsearch.index.mapper.internal
 

Methods in org.elasticsearch.index.mapper.internal with parameters of type FieldDataCache
 org.apache.lucene.search.Filter BoostFieldMapper.rangeFilter(FieldDataCache fieldDataCache, String lowerTerm, String upperTerm, boolean includeLower, boolean includeUpper, QueryParseContext context)
           
 

Uses of FieldDataCache in org.elasticsearch.index.mapper.ip
 

Methods in org.elasticsearch.index.mapper.ip with parameters of type FieldDataCache
 org.apache.lucene.search.Filter IpFieldMapper.rangeFilter(FieldDataCache fieldDataCache, String lowerTerm, String upperTerm, boolean includeLower, boolean includeUpper, QueryParseContext context)
           
 

Uses of FieldDataCache in org.elasticsearch.index.search
 

Methods in org.elasticsearch.index.search with parameters of type FieldDataCache
static NumericRangeFieldDataFilter<Byte> NumericRangeFieldDataFilter.newByteRange(FieldDataCache fieldDataCache, String field, Byte lowerVal, Byte upperVal, boolean includeLower, boolean includeUpper)
           
static NumericRangeFieldDataFilter<Double> NumericRangeFieldDataFilter.newDoubleRange(FieldDataCache fieldDataCache, String field, Double lowerVal, Double upperVal, boolean includeLower, boolean includeUpper)
           
static NumericRangeFieldDataFilter<Float> NumericRangeFieldDataFilter.newFloatRange(FieldDataCache fieldDataCache, String field, Float lowerVal, Float upperVal, boolean includeLower, boolean includeUpper)
           
static NumericRangeFieldDataFilter<Integer> NumericRangeFieldDataFilter.newIntRange(FieldDataCache fieldDataCache, String field, Integer lowerVal, Integer upperVal, boolean includeLower, boolean includeUpper)
           
static NumericRangeFieldDataFilter<Long> NumericRangeFieldDataFilter.newLongRange(FieldDataCache fieldDataCache, String field, Long lowerVal, Long upperVal, boolean includeLower, boolean includeUpper)
           
static NumericRangeFieldDataFilter<Short> NumericRangeFieldDataFilter.newShortRange(FieldDataCache fieldDataCache, String field, Short lowerVal, Short upperVal, boolean includeLower, boolean includeUpper)
           
 

Constructors in org.elasticsearch.index.search with parameters of type FieldDataCache
NumericRangeFieldDataFilter(FieldDataCache fieldDataCache, String field, T lowerVal, T upperVal, boolean includeLower, boolean includeUpper)
           
 

Uses of FieldDataCache in org.elasticsearch.index.search.geo
 

Fields in org.elasticsearch.index.search.geo declared as FieldDataCache
protected  FieldDataCache GeoDistanceDataComparator.fieldDataCache
           
 

Methods in org.elasticsearch.index.search.geo with parameters of type FieldDataCache
static FieldDataType.ExtendedFieldComparatorSource GeoDistanceDataComparator.comparatorSource(String fieldName, double lat, double lon, DistanceUnit unit, GeoDistance geoDistance, FieldDataCache fieldDataCache, MapperService mapperService)
           
 

Constructors in org.elasticsearch.index.search.geo with parameters of type FieldDataCache
GeoDistanceDataComparator(int numHits, String fieldName, double lat, double lon, DistanceUnit unit, GeoDistance geoDistance, FieldDataCache fieldDataCache, MapperService mapperService)
           
GeoDistanceFilter(double lat, double lon, double distance, GeoDistance geoDistance, String fieldName, GeoPointFieldMapper mapper, FieldDataCache fieldDataCache, String optimizeBbox)
           
GeoDistanceRangeFilter(double lat, double lon, Double lowerVal, Double upperVal, boolean includeLower, boolean includeUpper, GeoDistance geoDistance, String fieldName, GeoPointFieldMapper mapper, FieldDataCache fieldDataCache, String optimizeBbox)
           
GeoPolygonFilter(Point[] points, String fieldName, FieldDataCache fieldDataCache)
           
InMemoryGeoBoundingBoxFilter(Point topLeft, Point bottomRight, String fieldName, FieldDataCache fieldDataCache)
           
 

Uses of FieldDataCache in org.elasticsearch.script
 

Methods in org.elasticsearch.script with parameters of type FieldDataCache
 SearchScript ScriptService.search(MapperService mapperService, FieldDataCache fieldDataCache, String lang, String script, Map<String,Object> vars)
           
 

Uses of FieldDataCache in org.elasticsearch.search.facet.geodistance
 

Fields in org.elasticsearch.search.facet.geodistance declared as FieldDataCache
protected  FieldDataCache GeoDistanceFacetCollector.fieldDataCache
           
 

Uses of FieldDataCache in org.elasticsearch.search.internal
 

Methods in org.elasticsearch.search.internal that return FieldDataCache
 FieldDataCache SearchContext.fieldDataCache()
           
 

Uses of FieldDataCache in org.elasticsearch.search.lookup
 

Methods in org.elasticsearch.search.lookup that return FieldDataCache
 FieldDataCache DocLookup.fieldDataCache()
           
 

Constructors in org.elasticsearch.search.lookup with parameters of type FieldDataCache
SearchLookup(MapperService mapperService, FieldDataCache fieldDataCache, String[] types)
           
 



Copyright © 2009-2012. All Rights Reserved.