{"id":50837,"library":"etcd-io-bbolt","title":"etcd BoltDB","description":"A low-level key/value store in pure Go, originally a fork of BoltDB.","status":"active","version":"1.4.3","language":"go","source_language":null,"source_url":"https://github.com/etcd-io/bbolt","tags":["database","key-value","embedded","boltdb"],"install":[{"cmd":"go get github.com/etcd-io/bbolt","lang":"bash","label":"Install github.com/etcd-io/bbolt"}],"dependencies":[],"imports":[{"symbol":"bbolt","correct":"github.com/etcd-io/bbolt"}],"quickstart":{"code":"package main\n\nimport (\n\t\"fmt\"\n\t\"github.com/etcd-io/bbolt\"\n)\n\nfunc main() {\n\tdb, _ := bbolt.Open(\"my.db\", 0600, nil)\n\tdefer db.Close()\n\tdb.Update(func(tx *bbolt.Tx) error {\n\t\tb, _ := tx.CreateBucket([]byte(\"MyBucket\"))\n\t\treturn b.Put([]byte(\"key\"), []byte(\"value\"))\n\t})\n\tfmt.Println(\"Data stored\")\n}","lang":"go","description":"Open a BoltDB database and store a key-value pair"},"warnings":[{"fix":"Ensure write transactions are serialized or use read-only transactions for reads.","message":"bbolt does not support concurrent write transactions; only one write transaction can be active at a time.","severity":"gotcha","affected_versions":">=0.0.0"}],"env_vars":null,"search_vec":"'boltdb':2,16,22 'databas':17 'embed':21 'etcd':1 'fork':14 'go':11 'key':19 'key-valu':18 'key/value':7 'level':6 'low':5 'low-level':4 'origin':12 'pure':10 'store':8 'valu':20","created_at":"2026-06-15T05:11:03.391610+00:00","updated_at":"2026-06-15T05:11:03.391610+00:00","problems":[],"ecosystem":"go","meta_description":null,"install_score":null,"quickstart_score":null,"quickstart_tag":null,"pypi_latest":null,"cli_name":null,"cli_version":null,"type":"library","homepage":"https://github.com/etcd-io/bbolt","github":"https://github.com/etcd-io/bbolt","docs":"https://pkg.go.dev/github.com/etcd-io/bbolt#section-documentation","changelog":null,"pypi":null,"npm":null,"openapi_spec":null,"status_page":null,"smithery":null,"categories":["database"],"base_url":null,"auth_type":null,"provenance":{"verified_status":null,"verified_at":null,"last_verified":"2026-06-15","next_check":"2026-12-12","install_tag":null}}