About 13,400,000 results
Open links in new tab
  1. 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 …

  2. redis - Finding keys using wildcards - Stack Overflow

    Apr 10, 2024 · You can use the SCAN command in redis to search for keys without blocking the whole database. redis SCAN docs. This command has an optional MATCH filter that works …

  3. 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 …

  4. Redis raises "NOAUTH Authentication required" error but there is …

    Redis password has been saved in redis.conf in this /etc/redis/ directory you are able to see/edit redis config/password by: sudo vim /etc/redis/redis.conf Scroll to the SECURITY section and …

  5. How to cache large objects using Redis cache - Stack Overflow

    Dec 23, 2015 · This works well, however we are now experimenting with Redis cache. Below is an example of how much longer it takes for Redis than using the file system. (Note: using …

  6. How should I use Redis as a cache for SQL Server?

    Jun 28, 2016 · This data could become stale after about 10 minutes after which time I would like to get the record set again and put in in Redis. The app is an .NET MVC app. I was thinking …

  7. StackExchange.Redis How to Connect to Sentinel - Stack Overflow

    Dec 11, 2015 · Connect to Redis sentinel using the StackExchange.Redis ConnectionMultiplexer instead of the BookSleeve ConnectionUtils 12 Redis failover with StackExchange / Sentinel …

  8. Redis on Windows - config file - Stack Overflow

    All you need to do is to run the redis-server.exe followed by the filename of your config file. eg: D:\Coding\RedisIO>redis-server.exe redis.windows.conf And for the db file you need to add / …

  9. 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 …

  10. 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 …