Enum LruTaxonomyWriterCache.LRUType
Determines cache type. For guaranteed correctness - not relying on no-collisions in the hash function, LRU_STRING should be used.
Namespace: Lucene.Net.Facet.Taxonomy.WriterCache
Assembly: Lucene.Net.Facet.dll
Syntax
public enum LRUType
  Fields
| Name | Description | 
|---|---|
| LRU_HASHED | Use the label's hash as the key; this can lead to silent conflicts!  | 
      
| LRU_STRING | Use the label as the hash key; this is always correct but will usually use more RAM.  |