Redis中的字典列表

如何使用Python-redis在Redis中保留针对某个键的字典列表。以下是我要针对的数据结构:

'browsing_history' : {

'session_key_1' : [{'image': 'image-url', 'url' : 'url', 'title' : 'test_title', 'description' : 'test_description'}, {''image': 'image-url2', 'url' : 'url2', 'title' : 'test_title2', 'description' : 'test_description2'}],

'session_key_2' : [{'image': 'image-url', 'url' : 'url', 'title' : 'test_title', 'description' : 'test_description'}, {''image': 'image-url2', 'url' : 'url2', 'title' : 'test_title2', 'description' : 'test_description2'}],

}

想要添加到会话列表中以及添加新会话并检索它们。如何使用Python-redis做到这一点?

回答:

{'image': 'image-url', 'url' : 'url', 'title' : 'test_title', 'description' :

'test_description'}使用pickle或json序列化字典。使用redis列表将它们存储为字符串。使用类似browsing_history:SESSION_KEY_1访问这些列表的键。如果需要获取所有会话密钥的列表,则可能需要维护一组密钥字符串browsing_history:*

以上是 Redis中的字典列表 的全部内容, 来源链接: utcz.com/qa/414393.html

回到顶部