We have talked about Redis in recent articles. In this part, we are going to talk about how we can take Redis cluster and master-slave backup. Let’s start by reading what is cluster and master-slave configurations in Redis. You can read about the difference between them here Now when we talk about backup we have
Tag: redis
What are Redis master-slave and Redis clusters and the difference between them?
What are Redis master-slave and Redis clusters and the difference between them?
Redis 6.0.0 stable is out and here are the things we liked about it.
Today we got the news that Redis 6.0.0 stable is out just after 4 months (as quoted by the maintainer) after the RC1(release candidate 1). So let’s have a quick look at what we liked the most. RDB files are faster to load This is a big value for those who are running Redis Clusters
Redis bgsave taking a lot of memory. Here is the reason.
In recent times, I was working with Redis clusters which have very high throughput. While doing this we came across a problem which was Redis bgsave was taking a lot of memory sometimes almost as the same memory as the data present in the memory. In this small writeup, we will see why this happened.
Key metrics to monitor in Redis and optimization settings
Hi everyone in our last post we talked about Redis monitoring using Prometheus and Grafana. When I posted this on a few forums I got a suggestion that I should write about key metrics to watch while monitoring Redis. So let’s start the article Key metrics to monitor in Redis and optimization settings. Below are
Redis monitoring using Prometheus and Grafana
We have seen in one of the past articles about Redis clustering and how we can take backup and restore it. In this, we are going to see how we can monitor Redis nodes using Prometheus and Grafana. If you don’t know about Prometheus and Grafana read about it here. Now let’s see how we
Redis Cluster backup and restore.
Redis is an in-memory cache or key-value store. You can save the keys and values and access them very fast as it resides in memory. You can also persist the data in the disk as it provides an option for the same. One of the most famous ways to use Redis is its clustering mode.
Working on scale: What is caching and where to use which one?
This is the second article in series Working on scale. You can find the first one below. It was about replication and sharding and where to use which one. Working on Scale: What is replication and sharding and where to use which one? In this article we will be looking into caching, its different types, tools