Table of contents
Open Table of contents
Go Redis Example
Redis usage example in Go.
Repository: https://github.com/martishin/golang-redis-example
Running Locally
- Run Redis locally using Docker:
make run-redis
- Run the application:
go run main.go
- Alternatively, run the app and Redis using Docker Compose:
make build && make run