forked from mirror/ledisdb
15 lines
207 B
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
|
||
|
}
|