newszine

Redis String – Commands to manage a string value in redis datastore

5 years ago Lalit Bhagtani 0
Strings are a sequence of characters, In Redis, strings can be store as a value at key and various redis commands are used to store, manage and retrieved a string value stored in redis database. The syntax for using redis commands is as follows :- Syntax :- redis host:post> <Command Name> <key name> Example :- Read More

Redis Jedis pub sub- How to implement pub/sub system using jedis library

5 years ago Lalit Bhagtani 0
In this tutorial, we will learn about how to implement redis pub sub system using Jedis library. Jedis Library Jedis is a Java client library for redis datastore. It is small and very easy to use, and fully compatible with redis 2.8.x, 3.x.x and above datastore. You can find here more information about jedis library. Read More

Redis Jedis – How to perform CRUD operations on key using jedis library

5 years ago Lalit Bhagtani 0
In this tutorial, we will learn about how to perform CRUD operation on key using Jedis library. Jedis Library Jedis is a Java client library for redis datastore. It is small and very easy to use, and fully compatible with redis 2.8.x, 3.x.x and above datastore. You can find here more information about jedis library. Read More