Skip to content

Commit

Permalink
update README
Browse files Browse the repository at this point in the history
  • Loading branch information
fominok committed May 16, 2024
1 parent a554bcb commit 03ae31b
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,19 @@ From here we can build:

```cargo build```

## grovedbg

There is a work in progress implementation of a debugger layer for GroveDB. To use this library with
these capabilities enabled one needs to set a dependency with `grovedbg` feature. Then, to launch
visualizer tool to observe the database structure inside of your browser on a port, let's say 10000,
the following snippet should do:

```rust
let db = Arc::new(GroveDb::open("db").unwrap());
db.start_visualzier(10000);
```

Just remember to use Arc because the HTTP server might outlast the GroveDB instance.

## Performance

Expand Down

0 comments on commit 03ae31b

Please sign in to comment.