concept_store/lib.rs
1//! The memory-mapped concept store.
2//!
3//! A `redb` database holding one code system version's concepts, displays,
4//! designations, and property values, keyed by dense ordinal, that the
5//! terminology operations read point-wise: `$lookup` and `$validate-code`
6//! resolve a code here without touching the graph. Built offline by
7//! `ferroterm-build`, opened read-only by the server. No spec governs the
8//! layout: our own design (`docs/architecture.md` decision 3).
9#![doc(test(attr(deny(warnings))))]
10
11pub mod builder;
12pub mod keys;
13pub mod record;
14pub mod store;
15pub mod tables;