我正在写聊天程序,我想做聊天记录,所以我需要存储一些值。首先是发布数据,如:
{chat_post_id,text,room_name}
其中chat_postid会自动递增,而text和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数据库概念的新手。 我想我应该以某种方式使用哈希,但不知道如何。