https://github.com/chyroc/redis
golang redis client / go语言实现的redis客户端
https://github.com/chyroc/redis
Last synced: 10 months ago
JSON representation
golang redis client / go语言实现的redis客户端
- Host: GitHub
- URL: https://github.com/chyroc/redis
- Owner: chyroc
- License: apache-2.0
- Created: 2018-08-02T15:42:28.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-11-20T10:31:37.000Z (about 6 years ago)
- Last Synced: 2025-01-29T08:22:52.236Z (12 months ago)
- Language: Go
- Size: 119 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# redis
golang redis client / go语言实现的redis客户端
[](https://travis-ci.org/chyroc/redis)
[](https://codecov.io/gh/chyroc/redis)
[godoc文档](https://godoc.org/github.com/chyroc/redis)
## TODO
* [x] connect
* [x] key
* [x] string
* [x] hash
* [x] list
* [x] set
* [x] sorted set
* [x] hyper log log
* [x] geo
* [x] pub / sub
* [x] transaction
* [ ] script
* [ ] server
## test
### run redis
```
docker run -p 6379:6379 -d redis # instance 1
docker run -p 7777:6379 -d redis # instance 2
```
### run test
```
./test.sh
```