sathwikreddy GVsathwikreddygv.blog·Jul 16, 2024Building my own Redis in Go - Part 3In the previous blog (part-2), we discussed the implementation of important commands like SET, GET, INCR, RPUSH, and LRANGE. In this blog, we will discuss two very important commands, EXPIRE and TTL. We will also look into how to write back to the cl...Discuss·64 readsRedis
MemgraphforMemgraphmemgraph.hashnode.dev·Aug 3, 2023What is a Key-Value Database?In the landscape of data management solutions, key-value databases stand apart, offering a unique blend of simplicity and performance tailored to the big data era. By abstracting data into simple key-value pairs and values, this type of database offe...Discusskey-value
Nikhil Akkinikhilakki.in·Jul 8, 2023Redis Unraveled: Exploring the Power of Redis for Use Cases in PythonRedis is an open-source, in-memory data structure store that can be used as a database, cache, and message broker. It stands for "Remote Dictionary Server." Redis is known for its speed, simplicity, and versatility, and it is often used as a key-valu...Discuss·315 readsPython DevelopmentRedis