concinnity-host 0.19.9

Host services for Concinnity: the on-disk state tree and the thread-scoped services
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# concinnity-host

Host services for the [Concinnity](https://crates.io/crates/concinnity)
engine: what the engine needs from the machine it runs on.

Two charters that share nothing but this crate:

- **`store`**: the project's on-disk state tree and the reads over it.
- **`thread`**: the worker pool and the per-thread interner.

They stay separate all the way down: nothing in `store` reaches into
`thread`, and nothing in `thread` names a path.

Most users want the [`concinnity`](https://crates.io/crates/concinnity)
facade crate rather than this one.