Skip to content

Commit

Permalink
Fix cache links
Browse files Browse the repository at this point in the history
  • Loading branch information
jhalterman committed Jul 29, 2024
1 parent cb8f371 commit 4eab011
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion _includes/common-links.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
[circuit-breaker-listeners]: {{ "/circuit-breaker#event-listeners" | relative_url }}
[circuit-breaker-standalone]: {{ "/circuit-breaker#standalone-usage" | relative_url }}
[rate-limiters]: {{ "/rate-limiter" | relative_url }}
[cache]: {{ "/cache" | relative_url }}
[caches]: {{ "/cache" | relative_url }}
[async-execution]: {{ "/async-execution" | relative_url }}
[event-listeners]: {{ "/event-listeners" | relative_url }}
[policy-listeners]: {{ "/event-listeners#policy-listeners" | relative_url }}
Expand Down
2 changes: 1 addition & 1 deletion _includes/side-menu.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
- [Fallback][fallbacks]
- [Hedge][hedge]
- [Bulkhead][bulkheads]
- [Cache][cache]
- [Cache][caches]

- Features
- [Async Execution][async-execution]
Expand Down
2 changes: 1 addition & 1 deletion index.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ title: Fault tolerance and resilience patterns for Go
Failsafe-go is a library for building fault tolerant Go applications. It works by wrapping executable logic with one or more resilience [policies], which can be combined and [composed][policy-composition] as needed. Policies include:

- Failure handling: [Retry][retry], [Fallback][fallbacks]
- Load limiting: [Circuit Breaker][circuit-breakers], [Bulkhead][bulkheads], [Rate Limiter][rate-limiters], [Timeout][timeouts], [Cache]
- Load limiting: [Circuit Breaker][circuit-breakers], [Bulkhead][bulkheads], [Rate Limiter][rate-limiters], [Timeout][timeouts], [Cache][caches]
- Time limiting: [Timeout][timeouts], [Hedge][hedge]

## Getting Started
Expand Down
2 changes: 1 addition & 1 deletion load-limiting.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ title: Load Limiting
1. TOC
{:toc}

Systems become overloaded when usage exceeds the capacity of resources such as CPU, memory, disk, thread pools, and so on. Failsafe-go offers several policies that can prevent system overload, including [Circuit Breakers][circuit-breakers], [Bulkheads][bulkheads], [Rate Limiters][rate-limiters], [Timeouts][timeouts], and [Caches][Cache]. We'll discuss below how these policies differ, and when you might choose one over another.
Systems become overloaded when usage exceeds the capacity of resources such as CPU, memory, disk, thread pools, and so on. Failsafe-go offers several policies that can prevent system overload, including [Circuit Breakers][circuit-breakers], [Bulkheads][bulkheads], [Rate Limiters][rate-limiters], [Timeouts][timeouts], and [Caches][caches]. We'll discuss below how these policies differ, and when you might choose one over another.

## Types of Load Limiting

Expand Down

0 comments on commit 4eab011

Please sign in to comment.