Class BytesRefBlockPool

java.lang.Object
org.apache.lucene.util.BytesRefBlockPool
All Implemented Interfaces:
Accountable

public class BytesRefBlockPool extends Object implements Accountable
Represents a logical list of ByteRef backed by a ByteBlockPool. It uses up to two bytes to record the length of the BytesRef followed by the actual bytes. They can be read using the start position returned when they are appended.

The BytesRef is written so it never crosses the ByteBlockPool.BYTE_BLOCK_SIZE boundary. The limit of the largest BytesRef is therefore ByteBlockPool.BYTE_BLOCK_SIZE-2 bytes.

NOTE: This API is for internal purposes only and might change in incompatible ways in the next release.
  • Constructor Details

    • BytesRefBlockPool

      public BytesRefBlockPool()
    • BytesRefBlockPool

      public BytesRefBlockPool(ByteBlockPool byteBlockPool)
  • Method Details

    • fillBytesRef

      public void fillBytesRef(BytesRef term, int start)
      Populates the given BytesRef with the term starting at start.
      See Also:
    • addBytesRef

      public int addBytesRef(BytesRef bytes)
      Add a term returning the start position on the underlying ByteBlockPool. THis can be used to read back the value using fillBytesRef(BytesRef, int).
      See Also:
    • ramBytesUsed

      public long ramBytesUsed()
      Description copied from interface: Accountable
      Returns an estimate of the JVM heap memory used by this object in bytes. The method name uses "ram" for historical reasons; only JVM heap memory should be reported. Off-heap resources such as memory-mapped files or native direct buffers should not be included. Negative values are illegal.
      Specified by:
      ramBytesUsed in interface Accountable