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
Subclasses of EntryCache in org.opends.server.core Modifier and Type Class Description static class
EntryCacheConfigManager.EntryCacheDispatcher
This class defines the entry cache dispatcher 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.Methods in org.opends.server.core that return EntryCache Modifier and Type Method Description EntryCache<?>
DirectoryServer. getEntryCache()
EntryCache<?>
EntryCacheConfigManager. getEntryCache()
Retrieves the entry cache dispatcher.EntryCache<?>
ServerContext. getEntryCache()
Retrieves the entry cache for the Directory Server.EntryCache<? extends EntryCacheCfg>
GroupManager. getStaticGroupCache()
Returns the cache for static groups.Method parameters in org.opends.server.core with type arguments of type EntryCache Modifier and Type Method Description void
EntryCacheConfigManager.EntryCacheDispatcher. setOrderedEntryCaches(List<EntryCache<?>> orderedEntryCaches)
Sets the current cache order array. -
Uses of EntryCache in org.opends.server.extensions
Subclasses of EntryCache in org.opends.server.extensions Modifier and Type Class Description class
FIFOEntryCache
This class defines a Directory Server entry cache that uses a FIFO to keep track of the entries.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.
-