diff --git a/README.md b/README.md index f8852c1..3a0128f 100644 --- a/README.md +++ b/README.md @@ -25,5 +25,13 @@ The tree is built with a focus on **implementation-level transparency**: ### Build and Run ```bash -cargo run +cargo build --release +./target/release/btree my_database.db ``` +## Repl Commands +Once running, you can use the following commands: +-`insert `- Insert a record (7 integers). +- `find ` - Search for a specific key. +- `tree` - Visual dump of the tree structure. +- `stats` - Show I/O performance (Reads/Writes). +- `exit` - Close the database.