We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7100f01 commit 53c7e8aCopy full SHA for 53c7e8a
cache/cache.go
@@ -5,7 +5,6 @@ import (
5
"github.com/l3uddz/crop/stringutils"
6
"github.com/pkg/errors"
7
"github.com/zippoxer/bow"
8
- "github.com/zippoxer/bow/codec/msgp"
9
)
10
11
var (
@@ -23,10 +22,7 @@ func Init(cachePath string, logLevel int) error {
23
22
cacheFilePath = cachePath
24
25
// set badger options
26
- opts := []bow.Option{
27
- // codec
28
- bow.SetCodec(msgp.Codec{}),
29
- }
+ opts := make([]bow.Option, 0)
30
31
if logLevel < 2 {
32
// disable badger logging for non trace log level
0 commit comments