modulepackage
0.0.0-20170112212544-b8d44737191f
Repository: https://github.com/smartthingsoss/ddbsync.git
Documentation: pkg.go.dev
# README
ddbsync
DynamoDB/sync
This package is designed to emulate the behaviour of pkg/sync
on top of Amazon's DynamoDB. If you need a distributed locking mechanism, consider using this package and DynamoDB before standing up paxos or Zookeeper.
Dependency Management
This project uses Glide to manage it's dependencies, and does not commit the vendor directory. As a result this is not go get
installable, please refer to the Glide docs for Glide install instructions, and make sure to glide install
to create a vendor
directory before attempting to build against this repo.
Usage
Create a DynamoDB table named Locks.
$ export AWS_ACCESS_KEY=access
$ export AWS_SECRET_KEY=secret
// ./main.go
package main
import(
"time"
"github.com/zencoder/ddbsync"
)
func main() {
m := new(ddbsync.Mutex)
m.Name = "some-name"
m.TTL = int64(10 * time.Second)
m.Lock()
defer m.Unlock()
// do important work here
return
}
$ git clone http://github.com/zencoder/ddbsync && cd ddbsync
$ export GO15VENDOREXPERIMENT=1
$ glide install
$ go run main.go
Related
# Functions
No description provided by the author
No description provided by the author
Mutex constructor.
# Interfaces
No description provided by the author
No description provided by the author
No description provided by the author