WithValueLogFileSize returns a new Options value with ValueLogFileSize set to the given value. ValueLogFileSize sets the maximum size of a single value log file. The default value of ValueLogFileSize is 1GB.
(val int64)
| 436 | // |
| 437 | // The default value of ValueLogFileSize is 1GB. |
| 438 | func (opt Options) WithValueLogFileSize(val int64) Options { |
| 439 | opt.ValueLogFileSize = val |
| 440 | return opt |
| 441 | } |
| 442 | |
| 443 | // WithValueLogMaxEntries returns a new Options value with ValueLogMaxEntries set to the given |
| 444 | // value. |
no outgoing calls