Show / Hide Table of Contents

    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 : int

    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.

    • Improve this Doc
    • View Source
    Back to top Copyright © 2020 Licensed to the Apache Software Foundation (ASF)