Ronit Pandaronit.dev·Jul 14, 2024Building the DNS cacheBefore jumping into the code for the cache, let's first breakdown what exactly what we need from the cache class And also how are we going to cater to all those use-cases Requirements set answers to all question names and record types individually t...26 readsBuilding a simple DNS server from scratch with NodeJS and Typescriptcache
Deven devendraadhikari.com.np·Jun 2, 2024Redis as a Cache in DjangoRedis is an open-source, in-memory data structure store that can be used as a database, cache, and message broker. It supports various data structures like strings, hashes, lists, sets, and sorted sets, making it versatile for a wide range of use cas...Redis
Prakhar Parasharicodeprakhar.hashnode.dev·Dec 8, 2023Beyond Cache: Rediscover the Art of High-Performance Data AlchemyIntroduction: Redis is an open-source, in-memory data structure store known for its speed and versatility. It acts like a powerful cache, performing much better than traditional databases for frequently accessed data. Redis supports various data stru...13 likes·131 readsRedis
Vinayak Salunkheyes-we-can-devops.hashnode.dev·Oct 22, 2023Redis database server's complex commandsIn this blog, we will learn some more complex commands used in a Redis database server. Prerequisite: Check my previous blog for a better understanding. Link: https://hashnode.com/edit/clo040pt9000509l4cwq4cuyq Redis is a data structure server. At it...Redis
Vinayak Salunkheyes-we-can-devops.hashnode.dev·Oct 21, 2023Redis server setup on RHELIn this blog, we will learn how to set up a Redis server step-by-step Prerequisite: Launch the AWS instance RHEL and ssh into it. What is Redis Redis is in the family of databases called key-value stores. The essence of a key-value store is the abili...Redis
Vinayak Salunkheyes-we-can-devops.hashnode.dev·Oct 21, 2023Redis: Your Ticket to Lightning-Fast Data Storage and Caching! ⚡📦Redis: Your Ticket to Lightning-Fast Data Storage and Caching! ⚡📦 In the fast-paced world of data storage and retrieval, Redis shines as a star player. With a name that's short for "REmote DIctionary Server," Redis is a high-performance, open-source...Redis
Lavleen Agrawallavleenagrawal.hashnode.dev·Sep 17, 2023Redis - KeysRedis allows the storage and retrieval of data in key-value pairs, where the values can be integers, strings, booleans, floats, etc. Keys in Redis are used to perform operations such as creating, storing, retrieving, updating, and deleting data to ac...4 likesRedis
Ankush Banikankush263blogs.hashnode.dev·Aug 6, 2023Getting Started with Redis: Unleashing Lightning-Fast Data RetrievalIntroduction: Redis is often touted as a game-changing technology for faster data retrieval from storage. And let me tell you, the hype is true. If you're considering learning Redis or are unsure whether it's worth your time, you've come to the right...10 likes·35 readsWeMakeDevs
Abiola Fasanyaharbiola.hashnode.dev·Apr 15, 2023How to Use Redis as a CacheIntroduction Caching is a technique used to speed up web applications by storing frequently accessed data in memory. Redis is an open-source key-value store that can be used as a caching mechanism for web applications. In this article, we'll explore ...181 readsHTML, data attributes, web development, front-end development, metadata, JavaScript, CSS, naming conventions, automated testing, accessibility, user experience.
Okan DAVUTokandavut.hashnode.dev·May 9, 2020Redis Implementation on ASP.NET Core ProjectsHi everyone! In this article i will explain what is Redis? and how to implement Redis in ASP.NET Core projects. What is Redis? Remote Dictionary Server (Redis) is a NoSQL database that stores data as key-values. It is written using the C programming...Redis