我正在编写聊天程序,我想做聊天历史,所以我需要存储一些值。首先是发布数据,例如:
{chat_post_id,text,room_name}
其中chat_postid 将自动递增,并且我从聊天中获得文本和roon_name。在收集了一些帖子后,我需要以某种方式将它们与编写它们的用户联系起来,所以我需要这样的东西:
Thomas
chat_postid_1,text,room_name
chat_postid_2,text,room_name
chat_postid_3,text,room_name
Kris
chat_postid_1,text,room_name
chat_postid_2,text,room_name
chat_postid_3,text,room_name
我不确定是否可以使用 redis - 我是这个 nosql 数据库概念的新手。我想我应该以某种方式使用哈希,但不知道如何。