From 0dc91351a1651e2cf8354e416c4f2d2ac3571107 Mon Sep 17 00:00:00 2001 From: jurij-jukic Date: Thu, 9 May 2024 08:42:00 +0200 Subject: [PATCH] removing redundant refs --- src/databases.md | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/databases.md b/src/databases.md index f95a8b3e..a20b5f89 100644 --- a/src/databases.md +++ b/src/databases.md @@ -4,7 +4,7 @@ The runtime currently provides key-value databases via [RocksDB](https://rocksdb Processes can create independent databases using wrappers over these libraries, and can read, write, and share these databases with other processes. The APIs for doing so you can find here: [KV](./apis/kv.md) and [SQLite](./apis/sqlite.md). -Similarly to files in the VFS, they are accessed by `package_id` and a `db` name ([here](https://docs.rs/kinode_process_lib/latest/kinode_process_lib/kv/struct.Kv.html#structfield.package_id) and [here](https://docs.rs/kinode_process_lib/latest/kinode_process_lib/sqlite/struct.Sqlite.html#structfield.package_id)). +Similarly to files in the VFS, they are accessed by `package_id` and a `db` name ([here](https://docs.rs/kinode_process_lib/latest/kinode_process_lib/kv/struct.Kv.html) and [here](https://docs.rs/kinode_process_lib/latest/kinode_process_lib/sqlite/struct.Sqlite.html)). Capabilities to read and write can be shared with other processes; processes within a given package have access by default. All examples are using the [`kinode_process_lib`](./process_stdlib/overview.md) functions. @@ -52,10 +52,5 @@ println!("rows: {}", rows.len()); ## References -- [KV API](./apis/kv.md) -- [SQLite API](./apis/sqlite.md) -- [RocksDB](https://github.com/rust-rocksdb/rust-rocksdb) -- [SQLite](https://www.sqlite.org/docs.html) -- [`kinode_process_lib` book entry](./process_stdlib/overview.md) - [`kinode_process_lib` docs.rs](https://docs.rs/kinode_process_lib) - [`kinode_process_lib` Github](https://github.com/kinode-dao/process_lib)