小编典典

Redis中的字典列表

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做到这一点?


阅读 494

收藏
2020-06-20

共1个答案

小编典典

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

2020-06-20