About 10,100,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. 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 …

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

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

  5. How Can I Browse/View The Values Stored in Redis [closed]

    Redis Commander worked really well for my very simple needs. Needed something very simple to use and also free ($). Does not have many frills but allows you to connect to a redis database, …

  6. Redis connection to 127.0.0.1:6379 failed - connect ECONNREFUSED

    Jan 6, 2012 · I think maybe you installed redis by source code.If that you need locate to redis-source-code-path/utils and run sudo install_server.sh command. After that, make sure redis …

  7. Does Redis persist data? - Stack Overflow

    Aug 15, 2014 · Redis trades data safety versus performance, like most NoSQL-DBs do. Most NoSQL-databases follow a concept of replication among multiple nodes to minimize this risk. …

  8. Open Redis port for remote connections - Stack Overflow

    $ src/redis-cli -h REMOTE.IP ping Could not connect to Redis at REMOTE.IP:6379: Connection refused In config, I got the standard port: # Accept connections on the specified port, default is …

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

  10. How does redis expire keys? - Stack Overflow

    Mar 23, 2016 · For the Redis 6, from the release notes: The expiration cycle has been rewritten in Redis 6.0 to allow for much faster expirations that more closely match the time-to-live (TTL) …