Class LiveFieldValues<S,T>

java.lang.Object
org.apache.lucene.search.LiveFieldValues<S,T>
All Implemented Interfaces:
Closeable, AutoCloseable, ReferenceManager.RefreshListener

public abstract class LiveFieldValues<S,T> extends Object implements ReferenceManager.RefreshListener, Closeable
Tracks live field values across NRT reader reopens. This holds a map for all updated ids since the last reader reopen. Once the NRT reader is reopened, it prunes the map. This means you must reopen your NRT reader periodically otherwise the RAM consumption of this class will grow unbounded!

NOTE: you must ensure the same id is never updated at the same time by two threads, because in this case you cannot in general know which thread "won".

  • Constructor Summary

    Constructors
    Constructor
    Description
    LiveFieldValues(ReferenceManager<S> mgr, T missingValue)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    add(String id, T value)
    Call this after you've successfully added a document to the index, to record what value you just set the field to.
    void
    afterRefresh(boolean didRefresh)
    Called after the attempted refresh; if the refresh did open a new reference then didRefresh will be true and ReferenceManager.acquire() is guaranteed to return the new reference.
    void
    Called right before a refresh attempt starts.
    void
     
    void
    Call this after you've successfully deleted a document from the index.
    get(String id)
    Returns the current value for this id, or null if the id isn't in the index or was deleted.
    int
    Returns the [approximate] number of id/value pairs buffered in RAM.

    Methods inherited from class java.lang.Object

    equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait