pkg/

directory
v0.0.0-...-e805d58 Latest Latest
Warning

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

Go to latest
Published: Nov 3, 2020 License: MIT

Directories

Path Synopsis
Package dynamo wraps the AWS DynamoDB SDK To insert a row: svc, _ := dynamo.New(conf) row := &types.Row{...} count, err := dynamo.Insert(svc, row)
Package dynamo wraps the AWS DynamoDB SDK To insert a row: svc, _ := dynamo.New(conf) row := &types.Row{...} count, err := dynamo.Insert(svc, row)
Package dynatomic provides a convenient wrapper API around using DynamoDB as highly available, concurrent, and performant asynchronous atomic counter Basic usage: // Initialize the dynatomic backround goroutine with a batch size of 100, // a wait time of a second, an AWS config and a function that will // notify the user of internal errors d := New(100, time.Second, config, errHandler) d.RowChan <- &types.Row{...} d.RowChan <- &types.Row{...} d.RowChan <- &types.Row{...} ...
Package dynatomic provides a convenient wrapper API around using DynamoDB as highly available, concurrent, and performant asynchronous atomic counter Basic usage: // Initialize the dynatomic backround goroutine with a batch size of 100, // a wait time of a second, an AWS config and a function that will // notify the user of internal errors d := New(100, time.Second, config, errHandler) d.RowChan <- &types.Row{...} d.RowChan <- &types.Row{...} d.RowChan <- &types.Row{...} ...
Package types abstracts the table and row details making it easy to use dynamodb as an atomic counter
Package types abstracts the table and row details making it easy to use dynamodb as an atomic counter

Jump to

Keyboard shortcuts

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