InterviewSolution
Saved Bookmarks
| 1. |
Explain the data types used in Redis? |
|
Answer» Following are the Redis data TYPES:- 1. Strings:- 2. Hashes:- They represent the objects. 3. Lists:-they are the set of lines that are sorted according to the insertion ORDER SYNTAX:- 4. Sets:- It is a collection of the string arranged randomly 5. Sorted Sets:-similar like the sets but here with each member, there is a SCORE which may get repeated while the members will be unique
This particular Redis interview question explains Redis data types. |
|