|
@@ -7,9 +7,10 @@ go-resiliency
|
|
|
Resiliency patterns for golang.
|
|
Resiliency patterns for golang.
|
|
|
Based in part on [Hystrix](https://github.com/Netflix/Hystrix),
|
|
Based in part on [Hystrix](https://github.com/Netflix/Hystrix),
|
|
|
[Semian](https://github.com/Shopify/semian), and others.
|
|
[Semian](https://github.com/Shopify/semian), and others.
|
|
|
-Currently implemented are:
|
|
|
|
|
-- circuit-breaker pattern (in the `breaker` directory)
|
|
|
|
|
-- semaphore pattern (in the `semaphore` directory)
|
|
|
|
|
-- deadline/timeout pattern (in the `deadline` directory)
|
|
|
|
|
-- batching pattern (in the `batcher` directory)
|
|
|
|
|
-- retriable pattern (in the `retrier` directory)
|
|
|
|
|
|
|
+
|
|
|
|
|
+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)
|