org.elasticsearch.index.cache.field.data.support
Class AbstractConcurrentMapFieldDataCache

java.lang.Object
  extended by org.elasticsearch.index.AbstractIndexComponent
      extended by org.elasticsearch.index.cache.field.data.support.AbstractConcurrentMapFieldDataCache
All Implemented Interfaces:
CloseableComponent, FieldDataCache, IndexComponent
Direct Known Subclasses:
SoftFieldDataCache, WeakFieldDataCache

public abstract class AbstractConcurrentMapFieldDataCache
extends AbstractIndexComponent
implements FieldDataCache


Field Summary
 
Fields inherited from class org.elasticsearch.index.AbstractIndexComponent
componentSettings, index, indexSettings, logger
 
Constructor Summary
protected AbstractConcurrentMapFieldDataCache(Index index, Settings indexSettings)
           
 
Method Summary
protected  java.util.concurrent.ConcurrentMap<java.lang.String,FieldData> buildFieldDataMap()
           
 FieldData cache(FieldDataType type, org.apache.lucene.index.IndexReader reader, java.lang.String fieldName)
           
 void clear()
           
 void clear(org.apache.lucene.index.IndexReader reader)
           
 void clearUnreferenced()
           
 void close()
           
 
Methods inherited from class org.elasticsearch.index.AbstractIndexComponent
index, nodeName
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface org.elasticsearch.index.cache.field.data.FieldDataCache
type
 

Constructor Detail

AbstractConcurrentMapFieldDataCache

protected AbstractConcurrentMapFieldDataCache(Index index,
                                              @IndexSettings
                                              Settings indexSettings)
Method Detail

close

public void close()
           throws ElasticSearchException
Specified by:
close in interface CloseableComponent
Throws:
ElasticSearchException

clear

public void clear()
Specified by:
clear in interface FieldDataCache

clear

public void clear(org.apache.lucene.index.IndexReader reader)
Specified by:
clear in interface FieldDataCache

clearUnreferenced

public void clearUnreferenced()
Specified by:
clearUnreferenced in interface FieldDataCache

cache

public FieldData cache(FieldDataType type,
                       org.apache.lucene.index.IndexReader reader,
                       java.lang.String fieldName)
                throws java.io.IOException
Specified by:
cache in interface FieldDataCache
Throws:
java.io.IOException

buildFieldDataMap

protected java.util.concurrent.ConcurrentMap<java.lang.String,FieldData> buildFieldDataMap()