Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alesr/cacheaside
Implementing cache-aside in Go with the Decorator pattern.
https://github.com/alesr/cacheaside
cache cache-aside decorator-design-pattern go golang
Last synced: about 2 months ago
JSON representation
Implementing cache-aside in Go with the Decorator pattern.
- Host: GitHub
- URL: https://github.com/alesr/cacheaside
- Owner: alesr
- License: mit
- Created: 2024-05-24T20:27:24.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-05-28T08:16:25.000Z (8 months ago)
- Last Synced: 2024-06-19T04:03:34.329Z (7 months ago)
- Topics: cache, cache-aside, decorator-design-pattern, go, golang
- Language: Go
- Homepage:
- Size: 9.77 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CacheAside
![CI](https://github.com/alesr/cacheaside/actions/workflows/ci.yaml/badge.svg?branch=main)CacheAside demonstrates the implementation of a [Cache-Aside](https://docs.aws.amazon.com/whitepapers/latest/database-caching-strategies-using-redis/caching-patterns.html#:~:text=remote%20distributed%20cache-,Cache%2DAside%20(Lazy%20Loading),whether%20the%20data%20is%20available.) pattern in Go using the [Decorator design pattern](https://en.wikipedia.org/wiki/Decorator_pattern).