You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+34-10Lines changed: 34 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,10 @@
1
-
# circuit
1
+
<palign="center">
2
+
<imgsrc="_img/logo.png"alt="circuit" />
3
+
</p>
2
4
3
-
A highly-tunable circuit breaker for Go.
5
+
<palign="center">
6
+
A highly-tunable circuit breaker for Go.
7
+
</p>
4
8
5
9
Circuit implements the [circuit breaker](https://www.martinfowler.com/bliki/CircuitBreaker.html) design pattern with gradual recovery via probabilistic throttling, type-safe generics, and zero background goroutines.
6
10
@@ -236,14 +240,6 @@ During the throttled state, the breaker probabilistically sheds requests using a
236
240
237
241
### Built-in Strategies
238
242
239
-
| Strategy | Behavior |
240
-
|----------|----------|
241
-
|`Linear` (default) | Steady decrease in blocking probability |
242
-
|`Logarithmic`| High blocking initially, rapid decrease after midpoint |
0 commit comments