https://github.com/delta456/redis-go
Redis Client in Go made for learning purposes
https://github.com/delta456/redis-go
Last synced: 8 months ago
JSON representation
Redis Client in Go made for learning purposes
- Host: GitHub
- URL: https://github.com/delta456/redis-go
- Owner: Delta456
- License: mit
- Created: 2023-11-19T18:34:28.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-11-19T19:37:56.000Z (over 2 years ago)
- Last Synced: 2025-10-10T04:17:06.493Z (8 months ago)
- Language: Go
- Size: 6.84 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# redis-go
Redis Client in Go made for learning purposes. Reference taken from [build-redis-from-scartch](https://www.build-redis-from-scratch.dev/en/introduction).
## Why Redis?
Simplicity as a tool and its ease of understanding.
## How Redis Works?

- Redis is an in-memory database which will always be referred to as the **Server**.
- Redis stores key-value pairs using Strings.
```redis
SET admin delta
> GET delta
"delta"
```
- Redis receives these commands through a serialization protocol called [RESP](https://redis.io/docs/reference/protocol-spec/).
### License
Licensed under [MIT](./LICENSE)