// EnableStatistics enable statistics. func (opts *Options) EnableStatistics() { C.rocksdb_options_enable_statistics(opts.c) }
func (o *Options) EnableStatistics() { C.rocksdb_options_enable_statistics(o.Opt) }
// If enabled, then we should collect metrics about database operations. // Default: false func (self *Options) EnableStatistics() { C.rocksdb_options_enable_statistics(self.c) }
func (o *Options) EnableStatistics(b bool) { if b { C.rocksdb_options_enable_statistics(o.Opt) } }