The most important Redis data structures you must understand

Jerry An
Analytics Vidhya
Published in
5 min readDec 18, 2020

--

redis data structures

Redis is an open source (BSD licensed), in-memory data structure store, used as a database, cache and message broker. It supports data structures such as strings, hashes, lists, sets, sorted sets with range queries, bitmaps, hyperloglogs and geospatial indexes with radius queries.

Redis is the world’s most popular in-memory data structure server. In order to…

--

--