updated readme

This commit is contained in:
bronku 2026-01-09 01:39:39 +01:00
parent f4f6d801b7
commit 7ac3ef2130

View file

@ -25,5 +25,13 @@ The tree is built with a focus on **implementation-level transparency**:
### Build and Run ### Build and Run
```bash ```bash
cargo run cargo build --release
./target/release/btree my_database.db
``` ```
## Repl Commands
Once running, you can use the following commands:
-`insert <k> <x> <a1> <a2> <a3> <a4> <a5>`- Insert a record (7 integers).
- `find <key>` - Search for a specific key.
- `tree` - Visual dump of the tree structure.
- `stats` - Show I/O performance (Reads/Writes).
- `exit` - Close the database.