Skip to content

Commit

Permalink
Change Cache Stampede emoji
Browse files Browse the repository at this point in the history
  • Loading branch information
jodydonetti committed Nov 19, 2023
1 parent 1816b74 commit ab9c174
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ More into videos? The great Anna Hoffman has been so nice to listen to me mumble
## ✔ Features
These are the **key features** of FusionCache:

- [**🚀 Cache Stampede prevention**](docs/CacheStampede.md): automatic protection from the Cache Stampede problem
- [**🛡️ Cache Stampede prevention**](docs/CacheStampede.md): automatic protection from the Cache Stampede problem
- [**🔀 Optional 2nd level**](docs/CacheLevels.md): an optional 2nd level handled transparently, with any implementation of `IDistributedCache`
- [**💣 Fail-Safe**](docs/FailSafe.md): a mechanism to avoids transient failures, by reusing an expired entry as a temporary fallback
- [**⏱ Soft/Hard timeouts**](docs/Timeouts.md): a slow factory (or distributed cache) will not slow down your application, and no data will be wasted
Expand Down
2 changes: 1 addition & 1 deletion docs/CacheStampede.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

</div>

# 🚀 Cache Stampede prevention
# 🛡️ Cache Stampede prevention

A [Cache Stampede](https://en.wikipedia.org/wiki/Cache_stampede) is a typical failure you may encounter while using caching in a high load scenario, and basically it's what happens when a lot of requests comes in for the same data and there's no special handling of that.

Expand Down
2 changes: 1 addition & 1 deletion docs/FactoryOptimization.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@

</div>

# 🚀 Cache Stampede prevention
# 🛡️ Cache Stampede prevention

This content has been moved to the [CacheStampede](CacheStampede.md) page.
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ A feature comparison between existing .NET caching solutions, to help you choos

A deeper description of the main features:

- [**🚀 Cache Stampede prevention**](CacheStampede.md): automatic protection from the Cache Stampede problem
- [**🛡️ Cache Stampede prevention**](CacheStampede.md): automatic protection from the Cache Stampede problem
- [**🔀 Optional 2nd level**](CacheLevels.md): an optional 2nd level handled transparently, with any implementation of `IDistributedCache`
- [**💣 Fail-Safe**](FailSafe.md): a mechanism to avoids transient failures, by reusing an expired entry as a temporary fallback
- [**⏱ Soft/Hard timeouts**](Timeouts.md): a slow factory (or distributed cache) will not slow down your application, and no data will be wasted
Expand Down
2 changes: 1 addition & 1 deletion src/ZiggyCreatures.FusionCache/docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ More into videos? The great Anna Hoffman has been so nice to listen to me mumble
## ✔ Features
These are the **key features** of FusionCache:

- [**🚀 Cache Stampede prevention**](https://github.com/ZiggyCreatures/FusionCache/blob/main/docs/CacheStampede.md): automatic protection from the Cache Stampede problem
- [**🛡️ Cache Stampede prevention**](https://github.com/ZiggyCreatures/FusionCache/blob/main/docs/CacheStampede.md): automatic protection from the Cache Stampede problem
- [**🔀 Optional 2nd level**](https://github.com/ZiggyCreatures/FusionCache/blob/main/docs/CacheLevels.md): an optional 2nd level handled transparently, with any implementation of `IDistributedCache`
- [**💣 Fail-Safe**](https://github.com/ZiggyCreatures/FusionCache/blob/main/docs/FailSafe.md): a mechanism to avoids transient failures, by reusing an expired entry as a temporary fallback
- [**⏱ Soft/Hard timeouts**](https://github.com/ZiggyCreatures/FusionCache/blob/main/docs/Timeouts.md): a slow factory (or distributed cache) will not slow down your application, and no data will be wasted
Expand Down

0 comments on commit ab9c174

Please sign in to comment.