Answers for "redis python get all keys and values"

0

redis get all keys and values python

#using Pyredis library:

import redis

r = redis.Redis("localhost", 6379)
for key in r.scan_iter():
       print key
Posted by: Guest on August-06-2021

Code answers related to "redis python get all keys and values"

Python Answers by Framework

Browse Popular Code Answers by Language