This chapter introduces the Set, Sorted Set, Bitmap, and HyperLogLog data types. Sets A Set in Redis is an unordered collection of distinct Strings - it is not possible to add repeated elements to a Set. Internally, a Set is implemented as a hash table, which is the reason that some operations are optimized.
May 27, 2023
Redis supports various basic data types. Although you don’t need to use all the data types, it is important to understand how they work so that you can choose the right ones.
May 23, 2023