Redis SUBSCRIBE – How to subscribe to multiple channels in redis pub/sub

5 years ago Lalit Bhagtani 0
In this tutorial, we will learn about how to subscribe to multiple channels in redis message broker system using redis-cli. SUBSCRIBE Command The SUBSCRIBE command is used to subscribe the client to one or more specified channels in redis message broker system. Once the client executes the subscribe command, it enters the subscribed state where Read More

REDIS ( REmote DIrectory Server ) – Redis Tutorial

5 years ago Lalit Bhagtani 0
Redis is a open source ( BSD licensed ), NoSQL database. It is an In-Memory Database, based on the concept of Key-Value Store. Redis is also referred as a Data Structure Store. Lets understand each and every term one by one :- Key-Value Datastore :- It is a data storage paradigm, where data is stored Read More

Redis Hash – Commands to manage a hash value in redis datastore

5 years ago Lalit Bhagtani 0
Hash is a map of field-value pair, which can be used to represent object type like java object. In Redis, hash can be store as a value at key and various redis commands are used to store, manage and retrieved a hash value stored in redis database. The syntax for using redis commands is as Read More

Redis HVALS – How to get all the values contained in hash value

5 years ago Lalit Bhagtani 0
In this tutorial, we will learn about how to get all the values contained in the hash value stored at a key. For this, we will use Redis HVALS commands. HVALS Command This command returns values of all the field contained in the hash value stored at a specified key. An empty list is returned, if Read More