sql >> Databasteknik >  >> RDS >> Mysql

Hur representerar man data för trådade kommentarer (tillsammans med kommentarsröstning) i mongodb?

Spara bara kommentarerna som du vill att de ska representeras på din blogg. Vill du ha trådade/kapslade kommentarer? Förvara dem sedan på ett kapslat sätt:

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
    }
  ]
}

postId hänvisar till blogginlägget som kommentarerna tillhör och har använts som nyckel (eller _id i MongoDB) i dokumentet. Varje kommentar har ett unikt id , för att rösta eller kommentera enskilda kommentarer.

För att få de sammanlagda rösterna måste du skriva map-reduce-funktioner någonstans längs dessa linjer:

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 };
}

Jag har inte testat dessa funktioner och de söker inte efter null värden heller. Det är upp till dig :)



  1. MariaDB CEIL() Förklarad

  2. MySQL vs. MariaDB:vad du behöver veta

  3. Bästa praxis för att lagra datumet i MySQL från PHP

  4. ORA-31011:XML-tolkning misslyckades - ogiltiga tecken (oracle sql)