Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/martishin/golang-redis-example
Golang Redis usage example
https://github.com/martishin/golang-redis-example
docker-compose dockerfile go go-redis golang golang-examples redis
Last synced: about 2 months ago
JSON representation
Golang Redis usage example
- Host: GitHub
- URL: https://github.com/martishin/golang-redis-example
- Owner: martishin
- Created: 2023-12-02T18:59:29.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-04T02:53:38.000Z (about 1 year ago)
- Last Synced: 2024-10-13T14:09:23.449Z (3 months ago)
- Topics: docker-compose, dockerfile, go, go-redis, golang, golang-examples, redis
- Language: Go
- Homepage:
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Go Redis Example
Redis usage example in Go## 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`## Technologies Used
* [Go](https://go.dev/)
* [go-redis](https://github.com/redis/go-redis)
* [Redis](https://redis.io/)
* [Docker](https://www.docker.com/)