InterviewSolution
| 1. |
What Is Redis? |
|
Answer» Redis is an ADVANCE KeyValue store, open source, NoSQL database which is primarily use for BUILDING highly scalable web applications. Redis holds its database entirely in memory and use the disk only for persistence. It has a rich set of data types LIKE String, List, HASHES, Sets and Sorted Sets with range queries and bitmaps, hyper logs and GEOSPATIAL indexes with radius queries. It finds is use where very high write and read speed is in demand Redis is an advance KeyValue store, open source, NoSQL database which is primarily use for building highly scalable web applications. Redis holds its database entirely in memory and use the disk only for persistence. It has a rich set of data types like String, List, Hashes, Sets and Sorted Sets with range queries and bitmaps, hyper logs and geospatial indexes with radius queries. It finds is use where very high write and read speed is in demand |
|