コメントをcassandraに保存する良い方法を探しています。誰かがコメントを保存するための優れたCassandraデータモデルを提供してくれますか?
データモデルでは、phpcassaを使用してこれらのコメントの特定の数を取得できるはずです。
これが私の考えでした:
Comments = {
CommentId1:{
CommentAuthor,
Content,
Timestamp
},
CommentId2:{
CommentAuthor,
Content,
Timestamp
}
...
}
CommentsLine = {
EntryId1:{
CommentId1: timestamp,
CommentId2: timestamp,
CommentId3: timestamp,
...
}
...
}
しかし、これがより良い方法かどうかはわかりません。助けてくれてありがとう。