writecacheconfig

package
v0.0.0-...-79ba347 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 1, 2023 License: GPL-3.0 Imports: 2 Imported by: 0

Documentation

Index

Constants

View Source
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

type Config config.Config

Config is a wrapper over the config section which provides access to WriteCache configurations.

func From

func From(c *config.Config) *Config

From wraps config section into Config.

func (*Config) BoltDB

func (x *Config) BoltDB() *boltdbconfig.Config

BoltDB returns config instance for querying bolt db specific parameters.

func (*Config) Enabled

func (x *Config) Enabled() bool

Enabled returns true if write-cache is enabled and false otherwise.

Panics if the value is not a boolean.

func (*Config) MaxObjectSize

func (x *Config) MaxObjectSize() uint64

MaxObjectSize returns the value of "max_object_size" config parameter.

Returns MaxSizeDefault if the value is not a positive number.

func (*Config) NoSync

func (x *Config) NoSync() bool

NoSync returns the value of "no_sync" config parameter.

Returns false if the value is not a boolean.

func (*Config) Path

func (x *Config) Path() string

Path returns the value of "path" config parameter.

Panics if the value is not a non-empty string.

func (*Config) SizeLimit

func (x *Config) SizeLimit() uint64

SizeLimit returns the value of "capacity" config parameter.

Returns SizeLimitDefault if the value is not a positive number.

func (*Config) SmallObjectSize

func (x *Config) SmallObjectSize() uint64

SmallObjectSize returns the value of "small_object_size" config parameter.

Returns SmallSizeDefault if the value is not a positive number.

func (*Config) WorkersNumber

func (x *Config) WorkersNumber() int

WorkersNumber returns the value of "workers_number" config parameter.

Returns WorkersNumberDefault if the value is not a positive number.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL