This is a repository where you can find usages of Redis commands and concepts in Rust Programming Language.
People who are familiar with Rust and willing to
- learn redis with examples
- learn to interact with redis server in Rust
Redis is an open source, advanced key-value store and an apt solution for building high-performance, scalable web applications. Redis can be used as a Cache, Message-Queue etc.
- Exceptionally Fast
- Supports rich data types
- Operations are atomic
- Multi-utility tool
- Linux
sudo apt-get install redis
- MacOS
brew install redis
To start Redis Server on port 6379
:
redis-server
Redis has 5 data types: Strings
, Hashes
, Lists
, Sets
, Sorted Sets
.