[][src]Struct tantivy::store::StoreWriter

pub struct StoreWriter { /* fields omitted */ }

Write tantivy's Store

Contrary to the other components of tantivy, the store is written to disc as document as being added, as opposed to when the segment is getting finalized.

The skip list index on the other hand, is built in memory.

Methods

impl StoreWriter[src]

pub fn new(writer: WritePtr) -> StoreWriter[src]

Create a store writer.

The store writer will writes blocks on disc as document are added.

pub fn store(&mut self, stored_document: &Document) -> Result<()>[src]

Store a new document.

The document id is implicitely the number of times this method has been called.

pub fn stack(&mut self, store_reader: &StoreReader) -> Result<()>[src]

Stacks a store reader on top of the documents written so far. This method is an optimization compared to iterating over the documents in the store and adding them one by one, as the store's data will not be decompressed and then recompressed.

pub fn close(self) -> Result<()>[src]

Finalized the store writer.

Compress the last unfinished block if any, and serializes the skip list index on disc.

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T[src]

impl<T> Downcast for T where
    T: Any
[src]