Documentation ¶
Index ¶
Constants ¶
const ( // SmallSizeDefault is a default size of small objects. SmallSizeDefault = 32 << 10 // MaxSizeDefault is a default value of the object payload size limit. MaxSizeDefault = 64 << 20 // WorkersNumberDefault is a default number of workers. WorkersNumberDefault = 20 // SizeLimitDefault is a default write-cache size limit. SizeLimitDefault = 1 << 30 )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Config ¶
Config is a wrapper over the config section which provides access to WriteCache configurations.
func (*Config) BoltDB ¶
func (x *Config) BoltDB() *boltdbconfig.Config
BoltDB returns config instance for querying bolt db specific parameters.
func (*Config) Enabled ¶
Enabled returns true if write-cache is enabled and false otherwise.
Panics if the value is not a boolean.
func (*Config) MaxObjectSize ¶
MaxObjectSize returns the value of "max_object_size" config parameter.
Returns MaxSizeDefault if the value is not a positive number.
func (*Config) NoSync ¶
NoSync returns the value of "no_sync" config parameter.
Returns false if the value is not a boolean.
func (*Config) Path ¶
Path returns the value of "path" config parameter.
Panics if the value is not a non-empty string.
func (*Config) SizeLimit ¶
SizeLimit returns the value of "capacity" config parameter.
Returns SizeLimitDefault if the value is not a positive number.
func (*Config) SmallObjectSize ¶
SmallObjectSize returns the value of "small_object_size" config parameter.
Returns SmallSizeDefault if the value is not a positive number.
func (*Config) WorkerCount ¶ added in v0.38.0
WorkerCount returns the value of "flush_worker_count" config parameter.
Returns WorkersNumberDefault if the value is not a positive number.