✅ (pure Go) ✅ Embeddable (no separate server process) ✅ ACID transactions on a single file ✅ Simple key-value API
#golang #database #opensource #crocdb
🐊
Most developers reach for Redis or BoltDB by default. But if you need: is crocdb
❌ A distributed database ❌ Suitable for high write throughput ❌ Meant for multi-terabyte datasets ✅ (pure Go) ✅ Embeddable (no separate server
An embedded key-value store inspired by BoltDB but simpler. Data is stored in a single .db file with B-tree indexing. _ := crocdb.Open("data.db"
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 })