Expand description
storage provides utilities for keeping storing and retrieving data, notably Data and
Tuples
Both are in-memory stores at the moment, but this module is where future disk stores will live
as well.
Re-exports§
pub use self::tuple::MergeRef;pub use self::tuple::Provenance;pub use self::tuple::Tuples;pub use self::data::Data;
Modules§
- data
dataprovides a facility to hold typed data in a deduped fashion, identified by ausizekey. The only requirements are that the data beHashandPartialEq. At the moment, this is done as an in-memory store.- tuple
tuplescontains structures related to an in-memory tuple-store forusizevalues. It is intended to be used in conjunction withstorage::Datato provid arbitrary-typed tuple functionality.