Simple cache implementation that uses a HashMap to store (key, value) pairs. This cache is not synchronized, use {@link Cache#SynchronizedCache(Cache)} if needed.

Namespace: Lucene.Net.Util.Cache
Assembly: Lucene.Net (in Lucene.Net.dll) Version: 2.9.4.1

Syntax

C#
public class SimpleMapCache : Cache
Visual Basic
Public Class SimpleMapCache _
	Inherits Cache
Visual C++
public ref class SimpleMapCache : public Cache

Inheritance Hierarchy

System..::..Object
  Lucene.Net.Util.Cache..::..Cache
    Lucene.Net.Util.Cache..::..SimpleMapCache
      Lucene.Net.Util.Cache..::..SimpleLRUCache

See Also