标签: python redis
可能重复: Inserting a List into another List in Redis
我想用redis来存储我的数据,比如
{ID:[[用户1,时间1,内容1],[USER2,TIME2,内容2] ...]},
怎么做? 如果只有一种方式喜欢:
'rpush id“[user1,time1,content1]”'?
如果我喜欢它,'[user1,time1,content1]'是一个字符串,这不是我想要的。我的意思是,如果存在一种方法来存储redis列表中的列表?所以[user1,time1,content1]是一个列表而不是比一个字符串,thx
'[user1,time1,content1]'
[user1,time1,content1]