Is Crocdb Free Direct
An embedded key-value store inspired by BoltDB but simpler. Data is stored in a single .db file with B-tree indexing.
db, _ := crocdb.Open("data.db", 0600) defer db.Close() db.Update(func(tx *crocdb.Tx) error { tx.Set([]byte("user:1"), []byte("Alice")) return nil }) is crocdb
Have you tried it? What’s your go-to embedded DB? An embedded key-value store inspired by BoltDB but simpler
…CrocDB might surprise you.
✅ (pure Go) ✅ Embeddable (no separate server process) ✅ ACID transactions on a single file ✅ Simple key-value API _ := crocdb.Open("data.db"