Quick-Start Redis for Ubuntu
The Guide shows you Step-by-Step How to Getting-Started Quickly with the Latest Redis NoSQL Database Stable/Development Release for Ubuntu GNU/Linux.
Redis is an In Memory NoSQL Database Very Fast, Versatile and Scalable, Look at the StartUp Guide for More Insight About It…
The Redis Database Dispose of the Following Data Types:
-
String
-
List
-
Set
-
Hash
-
ZSet
-
How to Install Redis on Ubuntu Linux
Ubuntu Redis Installation -
Open Terminal Window
(Press “Enter” to Execute Commands)Cmd and Search “term”
In case first see: Terminal QuickStart Guide.
-
Starting Redis Server
sudo su -c "redis-server"
-
Starting Redis Console
redis-cli
-
Hello World String Example
Inserting (hello, world) Key, Value Pair:
>set hello world
OK
Getting “world” Value from “hello” Key:
>get hello
“world”
-
Further Examples on Redis Structure Types
Redis Structure Commands