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: 5 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 (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-28T08:16:25.000Z (about 2 years ago)
- Last Synced: 2025-01-31T03:58:37.587Z (over 1 year ago)
- Topics: cache, cache-aside, decorator-design-pattern, go, golang
- Language: Go
- Homepage:
- Size: 9.77 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CacheAside

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).