redis = {}
redis['A'] = {}
redis['A']['1'] = value1
redis['A']['2'] = value2
redis['A']['3'] = value3
我需要使用python在redis中制作上述结构。我已经在 python 中使用 redis-py 客户端建立了连接,如下所示:
_connection = redis.StrictRedis(host='localhost', port=6379, db=0)
请让我知道如何使用 python 在 redis 中创建、存储和获取值?