[][src]Constant tantivy::schema::STORED

pub const STORED: SchemaFlagList<StoredFlag, ()>

Flag to mark the field as stored. This flag can apply to any kind of field.

A stored fields of a document can be retrieved given its DocId. Stored field are stored together and LZ4 compressed. Reading the stored fields of a document is relatively slow. (~ 100 microsecs)

It should not be used during scoring or collection.