benchmark

package
v1.11.3 Latest Latest
Warning

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

Go to latest
Published: Mar 14, 2023 License: Apache-2.0 Imports: 22 Imported by: 0

Documentation

Index

Constants

View Source
const (
	ExecutionTimeout = five * time.Minute
	StandardRuntime  = time.Minute
	MinimumRuntime   = five * time.Second
	MinIterations    = hundred
)

Variables

This section is empty.

Functions

func BSONDeepDocumentDecoding

func BSONDeepDocumentDecoding(_ context.Context, tm TimerManager, iters int) error

func BSONDeepDocumentDecodingLazy

func BSONDeepDocumentDecodingLazy(_ context.Context, tm TimerManager, iters int) error

func BSONDeepDocumentEncoding

func BSONDeepDocumentEncoding(_ context.Context, tm TimerManager, iters int) error

func BSONDeepMapDecoding

func BSONDeepMapDecoding(_ context.Context, tm TimerManager, iters int) error

func BSONDeepMapEncoding

func BSONDeepMapEncoding(_ context.Context, tm TimerManager, iters int) error

func BSONFlatDocumentDecoding

func BSONFlatDocumentDecoding(_ context.Context, tm TimerManager, iters int) error

func BSONFlatDocumentDecodingLazy

func BSONFlatDocumentDecodingLazy(_ context.Context, tm TimerManager, iters int) error

func BSONFlatDocumentEncoding

func BSONFlatDocumentEncoding(_ context.Context, tm TimerManager, iters int) error

func BSONFlatMapDecoding

func BSONFlatMapDecoding(_ context.Context, tm TimerManager, iters int) error

func BSONFlatMapEncoding

func BSONFlatMapEncoding(_ context.Context, tm TimerManager, iters int) error

func BSONFlatStructDecoding

func BSONFlatStructDecoding(ctx context.Context, tm TimerManager, iters int) error

func BSONFlatStructEncoding

func BSONFlatStructEncoding(ctx context.Context, tm TimerManager, iters int) error

func BSONFlatStructTagsDecoding

func BSONFlatStructTagsDecoding(ctx context.Context, tm TimerManager, iters int) error

func BSONFlatStructTagsEncoding

func BSONFlatStructTagsEncoding(ctx context.Context, tm TimerManager, iters int) error

func BSONFullDocumentDecoding

func BSONFullDocumentDecoding(_ context.Context, tm TimerManager, iters int) error

func BSONFullDocumentDecodingLazy

func BSONFullDocumentDecodingLazy(_ context.Context, tm TimerManager, iters int) error

func BSONFullDocumentEncoding

func BSONFullDocumentEncoding(_ context.Context, tm TimerManager, iters int) error

func BSONFullMapDecoding

func BSONFullMapDecoding(_ context.Context, tm TimerManager, iters int) error

func BSONFullMapEncoding

func BSONFullMapEncoding(_ context.Context, tm TimerManager, iters int) error

func CanaryIncCase

func CanaryIncCase(ctx context.Context, tm TimerManager, iters int) error

func DriverBenchmarkMain

func DriverBenchmarkMain() int

func GlobalCanaryIncCase

func GlobalCanaryIncCase(ctx context.Context, tm TimerManager, iters int) error

func MultiFindMany

func MultiFindMany(ctx context.Context, tm TimerManager, iters int) error

func MultiInsertLargeDocument

func MultiInsertLargeDocument(ctx context.Context, tm TimerManager, iters int) error

func MultiInsertSmallDocument

func MultiInsertSmallDocument(ctx context.Context, tm TimerManager, iters int) error

func SingleFindOneByID

func SingleFindOneByID(ctx context.Context, tm TimerManager, iters int) error

func SingleInsertLargeDocument

func SingleInsertLargeDocument(ctx context.Context, tm TimerManager, iters int) error

func SingleInsertSmallDocument

func SingleInsertSmallDocument(ctx context.Context, tm TimerManager, iters int) error

func SingleRunCommand

func SingleRunCommand(ctx context.Context, tm TimerManager, iters int) error

Types

type BenchCase

type BenchCase func(context.Context, TimerManager, int) error

type BenchFunction

type BenchFunction func(*testing.B)

func WrapCase

func WrapCase(bench BenchCase) BenchFunction

type BenchResult

type BenchResult struct {
	Name       string
	Trials     int
	Duration   time.Duration
	Raw        []Result
	DataSize   int
	Operations int
	// contains filtered or unexported fields
}

func (*BenchResult) EvergreenPerfFormat

func (r *BenchResult) EvergreenPerfFormat() ([]interface{}, error)

func (*BenchResult) HasErrors

func (r *BenchResult) HasErrors() bool

func (*BenchResult) String

func (r *BenchResult) String() string

type CaseDefinition

type CaseDefinition struct {
	Bench              BenchCase
	Count              int
	Size               int
	RequiredIterations int
	Runtime            time.Duration
	// contains filtered or unexported fields
}

func (*CaseDefinition) Name

func (c *CaseDefinition) Name() string

func (*CaseDefinition) ResetTimer

func (c *CaseDefinition) ResetTimer()

func (*CaseDefinition) Run

func (*CaseDefinition) StartTimer

func (c *CaseDefinition) StartTimer()

func (*CaseDefinition) StopTimer

func (c *CaseDefinition) StopTimer()

func (*CaseDefinition) String

func (c *CaseDefinition) String() string

type Metric

type Metric struct {
	Name  string      `json:"name"`
	Value interface{} `json:"value"`
}

type Result

type Result struct {
	Duration   time.Duration
	Iterations int
	Error      error
}

type TimerManager

type TimerManager interface {
	ResetTimer()
	StartTimer()
	StopTimer()
}

TimerManager is a subset of the testing.B tool, used to manage setup code.

Jump to

Keyboard shortcuts

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