Registry / database / boltdb-bolt

boltdb-bolt

JSON →
library1.3.1gogounverified

Package bolt implements a low-level key/value store in pure Go.

go get github.com/boltdb/bolt
INSTALL
IMPORT
SIG · BOLTDB-BOLT
B
boltdb-bolt
databasegov1.3.1
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

bolt
github.com/boltdb/bolt

Opens a BoltDB database file.

package main import ( "log" "github.com/boltdb/bolt" ) func main() { db, err := bolt.Open("my.db", 0600, nil) if err != nil { log.Fatal(err) } defer db.Close() }
Debug
Known issues
breakingBoltDB is no longer maintained; consider using bbolt (etcd fork).
fix
Replace import with go.etcd.io/bbolt
affects: >=1.3.1
Upgrade
Version history
1.3.1latest on pkg.go.dev
Audit
Dependencies

No dependency data recorded yet.

Agent activity
10 hits · last 30 days
node
8
OpenAI (training)
1
Resources
boltdb-bolt — go get boltdb-bolt · libregistry