mysql

package
v0.35.1 Latest Latest
Warning

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

Go to latest
Published: Apr 9, 2024 License: Apache-2.0 Imports: 16 Imported by: 0

Documentation

Index

Constants

View Source
const (
	DriverName = "mysql"
)

Variables

This section is empty.

Functions

This section is empty.

Types

type Conf

type Conf struct {
	ConnPool     *internal.ConnPoolConf  `yaml:"connPool" conf:",example=\n  maxLifeTime: 60m\n  maxIdleTime: 45s\n  maxOpen: 4\n  maxIdle: 1"`
	ConnRetry    *internal.ConnRetryConf `yaml:"connRetry" conf:",example=\n  maxAttempts: 3\n  initialInterval: 0.5s\n  maxInterval: 60s"`
	TLS          map[string]TLSConf      `` /* 137-byte string literal not displayed */
	ServerPubKey map[string]string       `yaml:"serverPubKey" conf:",example=\n  mykey: testdata/server_public_key.pem"`
	// DSN is the data source connection string.
	DSN string `yaml:"dsn" conf:"required,example=\"user:password@tcp(localhost:3306)/db?interpolateParams=true\""`
	// SkipSchemaCheck skips checking for required database tables on startup.
	SkipSchemaCheck bool `yaml:"skipSchemaCheck" conf:",example=false"`
}

Conf is required (if driver is set to 'mysql') configuration for mysql driver. +desc=This section is required only if storage.driver is mysql.

func (*Conf) Key

func (c *Conf) Key() string

func (*Conf) Validate added in v0.33.0

func (c *Conf) Validate() error

type Store

type Store struct {
	internal.DBStorage
}

func NewStore

func NewStore(ctx context.Context, conf *Conf) (*Store, error)

func (*Store) Driver

func (s *Store) Driver() string

type TLSConf

type TLSConf struct {
	CACert string `yaml:"caCert"`
	Cert   string `yaml:"cert"`
	Key    string `yaml:"key"`
}

Jump to

Keyboard shortcuts

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