[][src]Module grin_store::types

Common storage-related types

Structs

AppendOnlyFile

Wrapper for a file that can be read at any position (random read) but for which writes are append only. Reads are backed by a memory map (mmap(2)), relying on the operating system for fast access and caching. The memory map is reallocated to expand it when new writes are flushed.

DataFile

Data file (MMR) wrapper around an append only file.