Interface IncrementalTrieWriter<VALUE>

All Superinterfaces:
AutoCloseable
All Known Implementing Classes:
IncrementalDeepTrieWriterPageAware, IncrementalTrieWriterBase, IncrementalTrieWriterPageAware, IncrementalTrieWriterSimple

public interface IncrementalTrieWriter<VALUE> extends AutoCloseable
Common interface for incremental trie writers. Incremental writers take sorted input to construct a trie file while buffering only limited amount of data. The writing itself is done by some node serializer passed on construction time.

See org/apache/cassandra/io/sstable/format/bti/BtiFormat.md for a description of the mechanisms of writing and reading an on-disk trie.

  • Method Details