Published onJanuary 23, 2022 ☕️ 2 min readHashes In RedisRedisRedis Hashes are maps between the string fields and the string values.
Published onJanuary 23, 2022 ☕️ 2 min readSorted Set In RedisRedisRedis Sorted Sets are, similarly to Redis Sets, non repeating collections of Strings. The difference is that every member of a Sorted Set is associated with a score
Published onJanuary 17, 2022 ☕️ 2 min readRedis Message QueueRedisA message queue is a queue of messages sent between applications. It includes a sequence of work objects that are waiting to be processed.
Published onJanuary 17, 2022 ☕️ 2 min readSets In RedisRedisRedis internally uses a hash table to store the elements as a Set.
Published onJanuary 16, 2022 ☕️ 2 min readStoring Lists in RedisRedisThe Redis database internally stores List as a linked list. This linked list has a `head` and `tail`
Published onJanuary 15, 2022 ☕️ 3 min readIntroduction to redis and Strings in RedisRedisRedis is an open source (BSD licensed), in-memory data structure store, used as a database, cache, and message broker