An open API service indexing awesome lists of open source software.

https://github.com/hackjutsu/redis-demo


https://github.com/hackjutsu/redis-demo

Last synced: 9 months ago
JSON representation

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