About 7,130,000 results
Open links in new tab
  1. Redis as a database - Stack Overflow

    Jan 17, 2011 · I want to use Redis as a database, not a cache. From my (limited) understanding, Redis is an in-memory datastore. What are the risks of using Redis, and how can I mitigate …

  2. How do I change between redis database? - Stack Overflow

    Nov 14, 2012 · I am new with redis and I didn't figured out how to create and change to another redis database. How do I do this?

  3. Maximum number of databases in redis - Stack Overflow

    Apr 20, 2016 · In redis, select "number" gives access to specific database at that index. I my redis config it is set 16(why ?). We require high scaling of our application so what is the max limit for …

  4. How to List All Redis Databases? - Stack Overflow

    Oct 2, 2020 · I ran this command to access my redis server. telnet 127.0.0.1 6379 What is the command to show all of my databases?

  5. Redis command to get all available keys? - Stack Overflow

    Mar 9, 2011 · Is there a Redis command for fetching all keys in the database? I have seen some python-redis libraries fetching them. But was wondering if it is possible from redis-client.

  6. How Can I Browse/View The Values Stored in Redis

    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, …

  7. How to create own database in redis? - Stack Overflow

    Feb 25, 2016 · Redis database is not an equivalent of database names in DBMS like mysql. It is a way to create isolation and namespacing for the keys, and only provides index based naming, …

  8. What's the Point of Multiple Redis Databases? - Stack Overflow

    Apr 25, 2013 · In principle, Redis databases on the same instance are no different than schemas in RDBMS database instances. So, with all of that said, why/when would I ever want to use …

  9. Redis: Show database size/size for keys - Stack Overflow

    154 My redis instance seems to being growing very large and I'd like to find out which of the multiple databases I have in there consumes how much memory. Redis' INFO command just …

  10. How do I delete everything in Redis? - Stack Overflow

    I want to delete all keys. I want everything wiped out and give me a blank database. Is there a way to do this in Redis client?