説明なし

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

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.