
Redis: Show database size/size for keys - Stack Overflow
Feb 25, 2014 · Redis does not provide an out-of-the-box command to retrieve memory consumption per database or per key. But don't worry there are many ways. A very simple …
Newest 'redis' Questions - Stack Overflow
Initially, I was using Redis installed locally without any password, and Celery tasks worked fine. Later, I switched to a Redis Docker container and added a password (PASSWORD) using the …
How do I change between redis database? - Stack Overflow
Nov 14, 2012 · The reason is, that redis transactions are only atomic within one db number anyway. Most (if not all) clients nicely seperate that for you in the connect() phase. And if you …
How do I set the maximum memory size that Redis can use?
Redis will do everything in its power to prevent the operation from failing, though. In the newer versions of Redis, you can configure the memory reclaiming policies in the configuration, as …
What's default TTL in Redis? - Stack Overflow
Mar 6, 2018 · I have a Redis instance which uses keys that are expected to expire within like 1h. Yet, the instance always has been growing. Now that we stopped using it, it has 3.7Gb of data …
caching - Memcached vs. Redis? - Stack Overflow
Redis is more powerful, more popular, and better supported than memcached. Memcached can only do a small fraction of the things Redis can do. Redis is better even where their features …
How to set Redis max memory? - Stack Overflow
Oct 14, 2015 · Since this is an old question, users who are reading in 2019 and using Ubuntu 18.04, the configuration file is located in /etc/redis/redis.conf and if you have installed using …
docker-compose redis and redis commander - Stack Overflow
Aug 31, 2018 · i think you missed to link your 2 containers. the redis container needs a port + link and the redis-commander the correct environment. you can only use the container name for …
Redis as a database - Stack Overflow
Jan 18, 2011 · You can use Redis as an authoritative store in a number of different ways: Turn on AOF (Append-only File store) see AOF docs. This will keep a log of all Redis commands made …
How to know master/slave status of redis? - Stack Overflow
Jul 3, 2012 · I want to expand on the answer above by providing status meanings in a distributed setup # get sentinel / redis instance role of remote host: › redis-cli -h redis-02.a_slave -p 6379 …