Overview of Redis Data Types
masterRedis provides several data types categorized into basic and special types:
5 Basic Data Types:
String: Simple key-value pairs.List: Linked lists of strings.Set: Unordered collections of unique elements.Hash: Maps between string fields and string values.Zset(Sorted Set): Ordered sets where every member is associated with a score.
3 Special Data Types:
HyperLogLog: Probabilistic data structure for cardinality estimation.Bitmap: Bit-level operations on strings.Geospatial: For storing and querying geographic coordinates.
Other types include Bloom filter and Bitfield.