etcd-io/bbolt
An embedded key/value database for Go. observed · 2026-08-28
Health v2 · maintenance only
92/100
- Activity 99
- Release rhythm 77
- Longevity 100
How is this computed?
round(0.45*activity + 0.35*rhythm + 0.20*longevity); archived -> min(score, 10) — computed 2026-09-03. Adoption (stars, forks) is never an input.
- gap_med: 53
- age_days: 3365
- days_rel: 73
- days_push: 7
- n_releases_24m: 6
Adoption not part of the score
9705 stars · 744 forks observed · 2026-08-28
What it is AI-extracted, prompt v1, taxonomy v1, 2026-08-29, confidence not recorded
bbolt is an embedded, pure-Go key/value database forked from Ben Johnson's Bolt, maintained by the etcd-io project for reliability and stability. It stores data in a single file with B+tree indexing, ACID transactions, and a small fixed API, requiring no separate database server.
Use cases
- embed a simple key/value store in a Go application without running a database server
- persist small-to-medium structured data with ACID transactions in a single file
- store configuration or metadata locally with fast prefix and range scans
- build a reliable local storage layer for tools like proxies or CLI apps
- replace BoltDB with an actively maintained, API-compatible fork
When to choose
- your Go app needs embedded, zero-admin persistent key/value storage
- you want a stable, fixed API and file format with strong consistency guarantees
- you need read/write transactions and nested buckets in a single-file database
- you want a pure-Go dependency with no cgo or external services
When to avoid
- you need SQL, complex queries, or a client-server database
- you need high write concurrency from many processes (single-writer model)
- your dataset is much larger than available RAM and write-heavy workloads dominate
- you need full-text or secondary-index search out of the box
Facets
library · maturity stable
database database-driver file-system databases developer-tools backend go cross-platform embedded-database key-value-store lmdb-inspired pure-go b-plus-tree single-file-database
2 sources
- readme: https://github.com/etcd-io/bbolt · fetched 2026-08-28 · 14b229f8a8a3
- homepage: https://go.etcd.io/bbolt · fetched 2026-08-29 · 39aefe0f16a3
Member repositories
| Repository | Role | Health v2 |
|---|---|---|
| etcd-io/bbolt | main | 92 |
For agents
Data as of 2026-08-30T08:39:29.467469+00:00 · Report a problem