Sin descripción

Evan Huus 6800482f2c Put gopkg.in link in README for versioning hace 10 años
batcher 0fdc444808 batcher: short-circuit when timeout is 0 hace 11 años
breaker eaf0b22478 More efficient synchronization hace 11 años
deadline 164d336eab fix example hace 11 años
retrier f264dd2276 Add support for jitter in the retrier hace 11 años
semaphore b89f64cc19 Add build status to readmes hace 11 años
.gitignore 9d854293d0 Initial commit hace 11 años
.travis.yml c5e584d6ec Add go 1.4 support hace 11 años
LICENSE 9d854293d0 Initial commit hace 11 años
README.md 6800482f2c Put gopkg.in link in README for versioning hace 10 años

README.md

go-resiliency

Build Status GoDoc

Resiliency patterns for golang. Based in part on Hystrix, Semian, and others.

Currently implemented patterns include:

  • circuit-breaker (in the breaker directory)
  • semaphore (in the semaphore directory)
  • deadline/timeout (in the deadline directory)
  • batching (in the batcher directory)
  • retriable (in the retrier directory)

Follows semantic versioning using https://gopkg.in/ - import from gopkg.in/eapache/go-resiliency.v1 for guaranteed API stability.