wget http://download.redis.io/redis-stable.tar.gz
tar xvzf redis-stable.tar.gz
cd redis-stable
make
redis-server
redis-cli ping
This should return PONG
Assuming that you are running redis server on localhost you can type command
redis-cli
After this command appear redis command line prompt
127.0.0.1:6379>
The following is the list of all the data structures supported by Redis:
Based on redis.io official documentation
Note: The Redis project does not officially support Windows.
However, the Microsoft Open Tech group develops and maintains this Windows port targeting Win64. Official redis.io/download
You can choose to download different versions or the latest version of Redis github.com/MSOpenTech/redis/releases
PING command is used to test if a connection is still alive.
You can now start using Redis , please refer for more commands in official documentations