Mysql
 sql >> Database >  >> RDS >> Mysql

Come rappresentare i dati per i commenti in thread (insieme alla votazione dei commenti) in mongodb?

Basta archiviare i commenti come vuoi che siano rappresentati sul tuo blog. Vuoi commenti in thread/nidificati? Quindi archiviali in modo annidato:

postId: {
  comments: [
    {
      id: "47cc67093475061e3d95369d" // ObjectId
      title: "Title of comment",
      body: "Comment body",
      timestamp: 123456789,
      author: "authorIdentifier",
      upVotes: 11,
      downVotes: 2,
      comments: [
        {
          id: "58ab67093475061e3d95a684"
          title: "Nested comment",
          body: "Hello, this is a nested/threaded comment",
          timestamp: 123456789,
          author: "authorIdentifier",
          upVotes: 11,
          downVotes: 2,
          comments: [
            // More nested comments
          ]
        }
      ]
    },
    {
      // Another top-level comment
    }
  ]
}

Il postId si riferisce al post del blog a cui appartengono i commenti ed è stato utilizzato come chiave (o _id in MongoDB) del documento. Ogni commento ha un id univoco , per votare o commentare i singoli commenti.

Per ottenere i voti aggregati, dovrai scrivere funzioni di riduzione della mappa da qualche parte lungo queste linee:

function map() {
  mapRecursive(this.comments)
}

function mapRecursive(comments) {
  comments.forEach(
    function (c) {
      emit(comment.author, { upVotes: c.upVotes, downVotes: c.downVotes });
      mapRecursive(c.comments);
    }
  );
}

function reduce(key, values) {
  var upVotes = 0;
  var downVotes = 0;

  values.forEach(
    function(votes) {
      upVotes += votes.upVotes;
      downVotes += votes.downVotes;
    }
  );

  return { upVotes: upVotes, downVotes: downVotes };
}

Non ho testato queste funzioni e non verificano null anche i valori. Dipende da te :)