https://github.com/hackjutsu/redis-demo
https://github.com/hackjutsu/redis-demo
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/hackjutsu/redis-demo
- Owner: hackjutsu
- Created: 2017-05-17T07:58:33.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-05-18T06:41:55.000Z (almost 9 years ago)
- Last Synced: 2025-02-07T20:13:28.192Z (about 1 year ago)
- Language: Java
- Size: 1000 Bytes
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Redis Demo
Install redis
```bash
brew install redis
```
Launch redis server
```bash
redis-server ./redis.config
# Or
redis-server --daemonize yes
```
Verify the redis server is working
```bash
redis-cli ping
# PONG
```
Shut down the redis server
```bash
redis-cli shutdown
```
## License
MIT