我正在寻找一种在 cassandra 中存储评论的好方法。有人可以为我提供一个好的 Cassandra 数据模型来存储评论吗?
数据模型应该允许我使用phpcassa检索一定数量的这些评论。
这是我的想法:
Comments = {
CommentId1:{
CommentAuthor,
Content,
Timestamp
},
CommentId2:{
CommentAuthor,
Content,
Timestamp
}
...
}
CommentsLine = {
EntryId1:{
CommentId1: timestamp,
CommentId2: timestamp,
CommentId3: timestamp,
...
}
...
}
但我不确定这是更好的方法。感谢您的帮助。