Exemplo n.º 1
0
// SetMaxBytesForLevelMultiplier sets the max Bytes for level multiplier.
// Default: 10
func (opts *Options) SetMaxBytesForLevelMultiplier(value int) {
	C.rocksdb_options_set_max_bytes_for_level_multiplier(opts.c, C.int(value))
}
Exemplo n.º 2
0
func (o *Options) SetMaxBytesForLevelMultiplier(n int) {
	C.rocksdb_options_set_max_bytes_for_level_multiplier(o.Opt, C.int(n))
}