Redis is an open-source advanced key-value cache and data storage, which provides a heightened durability. It is often perceived as a data-structure server, as keys can contain different types of data: strings, hashes, lists, sets, sorted sets, bitmaps, and hyperloglogs. All of these data elements can be processed using various atomic operations, such as appending to a string, pushing an element to a list, incrementing the value in a hash, retrieving the highest-ranking member in a sorted set, etc.
One more important Redis feature is outstanding performance. It is achieved by operating on in-memory datasets. In order to store such a database, you can use either dumping to disk every once in a while or appending each command to a log. This persistence can also be optionally disabled if all you need is just a feature-rich, networked, in-memory cache.
And now let’s figure out how to get your own environment with a Redis data structure server in it, just within a few clicks.
Redis Installation
1. Log in to the platform.
2. Click New Environment in the upper left corner.

3. You’ll see an environment topology wizard opened. Navigate to the tab with the preferred programming language and pick Redis instance from the list of available NoSQL databases. Set the amount of fixed and dynamic cloudlets for it, name your environment, and click the Create button.

4. After the environment is successfully created, you’ll receive an email with your Redis node’s data: DNS address, IP address, port number it can be connected through, and access credentials.
Use this information for making any required configurations and managing your Redis server.