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
Published onDecember 31, 2021 ☕️ 1 min readMultiples of 3 or 5Euler-ProjectIf we list all the natural numbers below 10 that are multiples of 3 or 5, we get 3, 5, 6 and 9. The sum of these multiples is 23.