├── .envrc ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── README.md ├── book.toml ├── flake.lock ├── flake.nix ├── mermaid-init.js ├── mermaid.min.js ├── src ├── FDB_logo.png ├── SUMMARY.md ├── develop_layer │ ├── README.md │ ├── crafting-row-keys.md │ ├── storing-structured-data.md │ ├── studiable-layers.md │ ├── tips.md │ └── transactions.md ├── getting_started │ ├── fdbcli.md │ └── installation.md ├── internals │ ├── README.md │ ├── the-read-path.md │ └── the-write-path.md ├── meet_fdb │ ├── README.md │ ├── another_db.md │ ├── correctness.md │ ├── enter_fdb.md │ ├── everything_is_kv.md │ └── img │ │ └── aphyr.png ├── operate_fdb │ ├── README.md │ ├── choosing-coordinators.md │ ├── data-distribution.md │ ├── roles.md │ └── upgrading.md ├── the-record-layer │ ├── README.md │ ├── quick.md │ └── what-is-record-layer.md └── welcome.md └── theme └── header.hbs /.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreZ/fdb-book/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | book 2 | .direnv -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreZ/fdb-book/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreZ/fdb-book/HEAD/README.md -------------------------------------------------------------------------------- /book.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreZ/fdb-book/HEAD/book.toml -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreZ/fdb-book/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreZ/fdb-book/HEAD/flake.nix -------------------------------------------------------------------------------- /mermaid-init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreZ/fdb-book/HEAD/mermaid-init.js -------------------------------------------------------------------------------- /mermaid.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreZ/fdb-book/HEAD/mermaid.min.js -------------------------------------------------------------------------------- /src/FDB_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreZ/fdb-book/HEAD/src/FDB_logo.png -------------------------------------------------------------------------------- /src/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreZ/fdb-book/HEAD/src/SUMMARY.md -------------------------------------------------------------------------------- /src/develop_layer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreZ/fdb-book/HEAD/src/develop_layer/README.md -------------------------------------------------------------------------------- /src/develop_layer/crafting-row-keys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreZ/fdb-book/HEAD/src/develop_layer/crafting-row-keys.md -------------------------------------------------------------------------------- /src/develop_layer/storing-structured-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreZ/fdb-book/HEAD/src/develop_layer/storing-structured-data.md -------------------------------------------------------------------------------- /src/develop_layer/studiable-layers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreZ/fdb-book/HEAD/src/develop_layer/studiable-layers.md -------------------------------------------------------------------------------- /src/develop_layer/tips.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreZ/fdb-book/HEAD/src/develop_layer/tips.md -------------------------------------------------------------------------------- /src/develop_layer/transactions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreZ/fdb-book/HEAD/src/develop_layer/transactions.md -------------------------------------------------------------------------------- /src/getting_started/fdbcli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreZ/fdb-book/HEAD/src/getting_started/fdbcli.md -------------------------------------------------------------------------------- /src/getting_started/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreZ/fdb-book/HEAD/src/getting_started/installation.md -------------------------------------------------------------------------------- /src/internals/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreZ/fdb-book/HEAD/src/internals/README.md -------------------------------------------------------------------------------- /src/internals/the-read-path.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreZ/fdb-book/HEAD/src/internals/the-read-path.md -------------------------------------------------------------------------------- /src/internals/the-write-path.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreZ/fdb-book/HEAD/src/internals/the-write-path.md -------------------------------------------------------------------------------- /src/meet_fdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreZ/fdb-book/HEAD/src/meet_fdb/README.md -------------------------------------------------------------------------------- /src/meet_fdb/another_db.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreZ/fdb-book/HEAD/src/meet_fdb/another_db.md -------------------------------------------------------------------------------- /src/meet_fdb/correctness.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreZ/fdb-book/HEAD/src/meet_fdb/correctness.md -------------------------------------------------------------------------------- /src/meet_fdb/enter_fdb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreZ/fdb-book/HEAD/src/meet_fdb/enter_fdb.md -------------------------------------------------------------------------------- /src/meet_fdb/everything_is_kv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreZ/fdb-book/HEAD/src/meet_fdb/everything_is_kv.md -------------------------------------------------------------------------------- /src/meet_fdb/img/aphyr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreZ/fdb-book/HEAD/src/meet_fdb/img/aphyr.png -------------------------------------------------------------------------------- /src/operate_fdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreZ/fdb-book/HEAD/src/operate_fdb/README.md -------------------------------------------------------------------------------- /src/operate_fdb/choosing-coordinators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreZ/fdb-book/HEAD/src/operate_fdb/choosing-coordinators.md -------------------------------------------------------------------------------- /src/operate_fdb/data-distribution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreZ/fdb-book/HEAD/src/operate_fdb/data-distribution.md -------------------------------------------------------------------------------- /src/operate_fdb/roles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreZ/fdb-book/HEAD/src/operate_fdb/roles.md -------------------------------------------------------------------------------- /src/operate_fdb/upgrading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreZ/fdb-book/HEAD/src/operate_fdb/upgrading.md -------------------------------------------------------------------------------- /src/the-record-layer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreZ/fdb-book/HEAD/src/the-record-layer/README.md -------------------------------------------------------------------------------- /src/the-record-layer/quick.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreZ/fdb-book/HEAD/src/the-record-layer/quick.md -------------------------------------------------------------------------------- /src/the-record-layer/what-is-record-layer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreZ/fdb-book/HEAD/src/the-record-layer/what-is-record-layer.md -------------------------------------------------------------------------------- /src/welcome.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreZ/fdb-book/HEAD/src/welcome.md -------------------------------------------------------------------------------- /theme/header.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreZ/fdb-book/HEAD/theme/header.hbs --------------------------------------------------------------------------------