newszine

How to set multiple string values in redis – Redis MSET | MSETNX

5 years ago Lalit Bhagtani 0
In this tutorial, we will learn about how to set multiple string values at their respective keys in redis datastore, by using redis MSET, and MSETNX commands. MSET Command The MSET command is used to set multiple string values to their respective specified key. If any of the specified key already exist, then it’s value Read More

How to get a string value in redis datastore – Redis GET | MGET

5 years ago Lalit Bhagtani 0
In this tutorial, we will learn about how to get a string value stored at a key in redis datastore, by using redis GET and MGET command. GET Command The GET command is used to get a string value stored at a specified key. If key doesn’t exist, nil is returned and if key exists Read More