LibraDB icon indicating copy to clipboard operation
LibraDB copied to clipboard

LibraDB is a simple, persistent key/value store written in pure Go in less than 1000 lines for learning purposes.

Results 2 LibraDB issues
Sort by recently updated
recently updated
newest added

This PR tries to reproduce a few bugs by adding 1000 collections with 200 item entries. 1. When a split or rebalance occurs, the collection gets a new root. However,...

```go package main import ( "fmt" "strconv" "github.com/amit-davidson/LibraDB" ) func main() { path := "libra.db" db, _ := LibraDB.Open(path, LibraDB.DefaultOptions) tx := db.WriteTx() name := []byte("test") collection, _ := tx.CreateCollection(name)...