bolt icon indicating copy to clipboard operation
bolt copied to clipboard

An embedded key/value database for Go.

Results 84 bolt issues
Sort by recently updated
recently updated
newest added

Sometimes after a bunch of deletes Last() for new cursor returns nil for non-empty bucket. Code to reproduce is [here](https://github.com/coreos/bbolt/issues/95). May be it's enough to put n.rebalance() at the end...

I use the following code to create/open a bolt database file under the user home directory on mac: ```go curUser, err := user.Current() if err != nil { panic(err) }...

# github.com/boltdb/bolt ../../../boltdb/bolt/db.go:113:11: error: reference to undefined identifier ‘sync.Pool’ pagePool sync.Pool ^ ../../../boltdb/bolt/db.go:223:21: error: reference to undefined identifier ‘sync.Pool’ db.pagePool = sync.Pool{ ^ ../../../boltdb/bolt/db.go:223:25: error: expected ‘;’ or ‘}’ or...

>> Only one read-write transaction is allowed at a time. From documentation I understand that concurrent writes are not allowed. I'm not sure if this is correct thus this question...

Do not able to create sub bucket inside loop but when creating it outside it gets created.

Sorry to bring up another issue with this headline... I already checked the other two issues and do not have the impression that they match my case. Here my error...

Hi, We are in the process of replacing a MySQL database with a bolt database, and after inserting a lot of records (we are estimating in the range of 10...

Hello guys, there is a problem in file size updating in boltdb after reaching 1GB (it occurs during file remapping). The problem is still present in the master version. The...

Write-Transactions update Meta1 on commit, and Meta2 only be updated at Backup (invoke tx.WriteTo); **So, please consider this case:** 1. Assume my DB's freelist is stored in Page34, and I...

If I delete a few bytes from the beginning of a bolt db file, I get an application seg fault: ``` pwlog-test panic: runtime error: invalid memory address or nil...