Skip to content

Commit

Permalink
removing empty items by default
Browse files Browse the repository at this point in the history
  • Loading branch information
Mzack9999 committed Dec 16, 2022
1 parent 0e14b19 commit e05c026
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions filekv/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ type Stats struct {
}

var DefaultOptions Options = Options{
Compress: false,
Cleanup: true,
Dedupe: MemoryLRU,
Compress: false,
Cleanup: true,
Dedupe: MemoryLRU,
SkipEmpty: true,
}

0 comments on commit e05c026

Please sign in to comment.