ledisdb/store/config.go

15 lines
207 B
Go

package store
type Config struct {
Name string
Path string
//for leveldb, goleveldb, rocksdb
Compression bool
BlockSize int
WriteBufferSize int
CacheSize int
MaxOpenFiles int
}