How to get all the databases stored in redis using python
database, python, redis
Solution
Look here List All Redis Databases
Then in python you can do:
In [3]: r = redis.StrictRedis()
In [4]: r.config_get('databases')
Out[4]: {'databases': '16'}
In [5]: r.info('keyspace')
Out[5]: {'db0': {'avg_ttl': 0, 'expires': 0, 'keys': 4}}
Problem
I need to get all the databases stored in redis server using python-redis Thanks