Uses of Class
org.apache.lucene.store.RAMOutputStream
-
Packages that use RAMOutputStream Package Description org.apache.lucene.codecs Codecs API: API for customization of the encoding and structure of the index.org.apache.lucene.codecs.blockterms Pluggable term index / block terms dictionary implementations.org.apache.lucene.codecs.blocktree BlockTree terms dictionary.org.apache.lucene.codecs.blocktreeords Same postings format as Lucene50, except the terms dictionary also supports ords, i.e.org.apache.lucene.codecs.idversion A primary-key postings format that associates a version (long) with each term and can provide fail-fast lookups by ID and version.org.apache.lucene.codecs.memory Term dictionary, DocValues or Postings formats that are read entirely into memory.org.apache.lucene.index Code to maintain and access indices.org.apache.lucene.util.bkd Block KD-tree, implementing the generic spatial data structure described in this paper. -
-
Uses of RAMOutputStream in org.apache.lucene.codecs
Fields in org.apache.lucene.codecs declared as RAMOutputStream Modifier and Type Field Description private RAMOutputStream[]
MultiLevelSkipListWriter. skipBuffer
for every skip level a different buffer is used -
Uses of RAMOutputStream in org.apache.lucene.codecs.blockterms
Fields in org.apache.lucene.codecs.blockterms declared as RAMOutputStream Modifier and Type Field Description private RAMOutputStream
FixedGapTermsIndexWriter.SimpleFieldWriter. addressBuffer
private RAMOutputStream
BlockTermsWriter.TermsWriter. bytesWriter
private RAMOutputStream
FixedGapTermsIndexWriter.SimpleFieldWriter. offsetsBuffer
-
Uses of RAMOutputStream in org.apache.lucene.codecs.blocktree
Fields in org.apache.lucene.codecs.blocktree declared as RAMOutputStream Modifier and Type Field Description private RAMOutputStream
BlockTreeTermsWriter.TermsWriter. metaWriter
private RAMOutputStream
BlockTreeTermsWriter. scratchBytes
private RAMOutputStream
BlockTreeTermsWriter.TermsWriter. spareWriter
private RAMOutputStream
BlockTreeTermsWriter.TermsWriter. statsWriter
private RAMOutputStream
BlockTreeTermsWriter.TermsWriter. suffixLengthsWriter
Methods in org.apache.lucene.codecs.blocktree with parameters of type RAMOutputStream Modifier and Type Method Description void
BlockTreeTermsWriter.PendingBlock. compileIndex(java.util.List<BlockTreeTermsWriter.PendingBlock> blocks, RAMOutputStream scratchBytes, IntsRefBuilder scratchIntsRef)
-
Uses of RAMOutputStream in org.apache.lucene.codecs.blocktreeords
Fields in org.apache.lucene.codecs.blocktreeords declared as RAMOutputStream Modifier and Type Field Description private RAMOutputStream
OrdsBlockTreeTermsWriter.TermsWriter. metaWriter
private RAMOutputStream
OrdsBlockTreeTermsWriter. scratchBytes
private RAMOutputStream
OrdsBlockTreeTermsWriter.TermsWriter. statsWriter
private RAMOutputStream
OrdsBlockTreeTermsWriter.TermsWriter. suffixWriter
Methods in org.apache.lucene.codecs.blocktreeords with parameters of type RAMOutputStream Modifier and Type Method Description void
OrdsBlockTreeTermsWriter.PendingBlock. compileIndex(java.util.List<OrdsBlockTreeTermsWriter.PendingBlock> blocks, RAMOutputStream scratchBytes, IntsRefBuilder scratchIntsRef)
-
Uses of RAMOutputStream in org.apache.lucene.codecs.idversion
Fields in org.apache.lucene.codecs.idversion declared as RAMOutputStream Modifier and Type Field Description private RAMOutputStream
VersionBlockTreeTermsWriter.TermsWriter. metaWriter
private RAMOutputStream
VersionBlockTreeTermsWriter. scratchBytes
private RAMOutputStream
VersionBlockTreeTermsWriter.TermsWriter. suffixWriter
Methods in org.apache.lucene.codecs.idversion with parameters of type RAMOutputStream Modifier and Type Method Description void
VersionBlockTreeTermsWriter.PendingBlock. compileIndex(java.util.List<VersionBlockTreeTermsWriter.PendingBlock> blocks, RAMOutputStream scratchBytes, IntsRefBuilder scratchIntsRef)
-
Uses of RAMOutputStream in org.apache.lucene.codecs.memory
Fields in org.apache.lucene.codecs.memory declared as RAMOutputStream Modifier and Type Field Description private RAMOutputStream
FSTTermsWriter.TermsWriter. metaWriter
-
Uses of RAMOutputStream in org.apache.lucene.index
Fields in org.apache.lucene.index declared as RAMOutputStream Modifier and Type Field Description private RAMOutputStream
PrefixCodedTerms.Builder. output
-
Uses of RAMOutputStream in org.apache.lucene.util.bkd
Methods in org.apache.lucene.util.bkd with parameters of type RAMOutputStream Modifier and Type Method Description private int
BKDWriter. appendBlock(RAMOutputStream writeBuffer, java.util.List<byte[]> blocks)
Appends the current contents of writeBuffer as another block on the growing in-memory fileprivate int
BKDWriter. recursePackIndex(RAMOutputStream writeBuffer, BKDWriter.BKDTreeLeafNodes leafNodes, long minBlockFP, java.util.List<byte[]> blocks, byte[] lastSplitValues, boolean[] negativeDeltas, boolean isLeft, int leavesOffset, int numLeaves)
lastSplitValues is per-dimension split value previously seen; we use this to prefix-code the split byte[] on each inner node
-