Uses of Class
org.opends.server.api.EntryCache
-
Packages that use EntryCache Package Description org.opends.server.core Contains various classes that comprise the core of the Directory Server codebase.org.opends.server.extensions Contains various implementations of Directory Server APIs that are not appropriate for other packages. -
-
Uses of EntryCache in org.opends.server.core
Methods in org.opends.server.core that return EntryCache Modifier and Type Method Description EntryCache<?>
DirectoryServer. getEntryCache()
EntryCache<?>
ServerContext. getEntryCache()
Retrieves the entry cache for the Directory Server.Methods in org.opends.server.core with parameters of type EntryCache Modifier and Type Method Description void
DirectoryServer. setEntryCache(EntryCache<?> entryCache)
void
ServerContext. setEntryCache(EntryCache<?> entryCache)
Specifies the entry cache that should be used by the Directory Server. -
Uses of EntryCache in org.opends.server.extensions
Subclasses of EntryCache in org.opends.server.extensions Modifier and Type Class Description class
DefaultEntryCache
This class defines the default entry cache which acts as an arbiter for every entry cache implementation configured and installed within the Directory Server or acts an an empty cache if no implementation specific entry cache is configured.class
FIFOEntryCache
This class defines a Directory Server entry cache that uses a FIFO to keep track of the entries.class
NullEntryCache
Implementation of the EntryCache following the null object pattern.class
SoftReferenceEntryCache
This class defines a Directory Server entry cache that uses soft references to manage objects in a way that will allow them to be freed if the JVM is running low on memory.Methods in org.opends.server.extensions that return EntryCache Modifier and Type Method Description static EntryCache<?>
NullEntryCache. getInstance()
Returns the null entry cache instance.Method parameters in org.opends.server.extensions with type arguments of type EntryCache Modifier and Type Method Description static void
DefaultEntryCache. setCacheOrder(SortedMap<Integer,EntryCache<? extends EntryCacheCfg>> cacheOrderMap)
Sets the current cache order array.
-