add (salted) bloom filter liveset
This commit is contained in:
+11
-2
@@ -126,13 +126,22 @@ type Blockstore struct {
|
||||
}
|
||||
|
||||
type Splitstore struct {
|
||||
UseLMDBHotstore bool
|
||||
UseLMDBTracking bool
|
||||
HotStoreType string
|
||||
TrackingStoreType string
|
||||
LiveSetType string
|
||||
EnableFullCompaction bool
|
||||
EnableGC bool // EXPERIMENTAL
|
||||
Archival bool
|
||||
}
|
||||
|
||||
func (s *Splitstore) GetHotStoreType() string {
|
||||
// default is badger
|
||||
if s.HotStoreType == "" {
|
||||
return "badger"
|
||||
}
|
||||
return s.HotStoreType
|
||||
}
|
||||
|
||||
// // Full Node
|
||||
|
||||
type Metrics struct {
|
||||
|
||||
Reference in New Issue
Block a user