https://github.com/shankytiwari/building-a-url-shortener-with-golang-and-redis
Building a URL Shortener with GoLang and Redis
https://github.com/shankytiwari/building-a-url-shortener-with-golang-and-redis
golang redis url-shortener url-shortener-microservice
Last synced: 7 months ago
JSON representation
Building a URL Shortener with GoLang and Redis
- Host: GitHub
- URL: https://github.com/shankytiwari/building-a-url-shortener-with-golang-and-redis
- Owner: ShankyTiwari
- Created: 2020-02-26T15:31:53.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-08-31T05:29:19.000Z (about 5 years ago)
- Last Synced: 2023-03-02T01:11:54.832Z (over 2 years ago)
- Topics: golang, redis, url-shortener, url-shortener-microservice
- Language: Go
- Homepage: https://www.codershood.info/2020/02/29/building-a-url-shortener-with-golang-and-redis/
- Size: 5.86 KB
- Stars: 1
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Building a URL Shortener with GoLang and Redis
How URL shorteners work and how we can develop the POD application using GoLang and Redis.
## Installtion
Below command will Install all the dependencies recursively.
```bash
go get -d ./...
```## Starting the GO server
Use the below command to create executable and the run executable.
```bash
go build
```