MCPcopy Create free account
hub / github.com/elastic/devfiler / StorageOpt

Enum StorageOpt

src/storage/table.rs:225–231  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

223/// Defines what to optimize the table for.
224#[derive(Debug, Clone, Copy, PartialEq, Eq)]
225pub enum StorageOpt {
226 /// Random access key-value lookups.
227 RandomAccess,
228
229 /// Sequential full-table or range reads.
230 SeqRead,
231}
232
233/// Merge operator function defining how to combine multiple DB values into one.
234pub type MergeFn<T> = fn(

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected