[Missing <summary> documentation for "N:Lucene.Net.Util.Cache"]

Classes

  ClassDescription
Public classAbstractSegmentCache
Root custom cache to allow a factory to retain references to the custom caches without having to be aware of the type.
Public classCache
Base class for cache implementations.
Public classSegmentCache<(Of <(<'T>)>)>
Custom cache with two levels of keys, outer key is the IndexReader with the inner key being a string, commonly a field name but can be anything. Refer to the unit tests for an example implementation. The type that is being cached.
Public classSimpleLRUCache
Public classSimpleMapCache
Simple cache implementation that uses a HashMap to store (key, value) pairs. This cache is not synchronized, use {@link Cache#SynchronizedCache(Cache)} if needed.