File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed
Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 11Bolt
22====
33
4- [ ![ Godoc] ( http://img.shields.io/badge/go-documentation-blue.svg?style=flat-square )] ( https://godoc.org/github.com/coreos/bbolt )
4+ [ ![ Go Report Card ] ( https://goreportcard.com/badge/github.com/coreos/bbolt?style=flat-square )] ( https://goreportcard.com/report/github.com/coreos/bbolt ) [ ![ Godoc] ( http://img.shields.io/badge/go-documentation-blue.svg?style=flat-square )] ( https://godoc.org/github.com/coreos/bbolt )
55
66Bolt is a pure Go key/value store inspired by [ Howard Chu's] [ hyc_symas ]
77[ LMDB project] [ lmdb ] . The goal of the project is to provide a simple,
Original file line number Diff line number Diff line change @@ -113,6 +113,7 @@ func TestBucket_Get_Capacity(t *testing.T) {
113113 // Ensure slice can be appended to without a segfault.
114114 k = append (k , []byte ("123" )... )
115115 v = append (v , []byte ("123" )... )
116+ _ , _ = k , v // to pass ineffassign
116117
117118 return nil
118119 }); err != nil {
Original file line number Diff line number Diff line change @@ -146,7 +146,7 @@ The commands are:
146146 buckets print a list of buckets
147147 check verifies integrity of bolt database
148148 compact copies a bolt database, compacting it in the process
149- dump print a hexidecimal dump of a single page
149+ dump print a hexadecimal dump of a single page
150150 get print the value of a key in a bucket
151151 info print basic info
152152 keys print a list of keys in a bucket
You can’t perform that action at this time.
0 commit comments