Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8853311
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T13:37:16+00:00 2026-06-14T13:37:16+00:00

Currently, I am implementing a blog application with nodejs/expressjs and mongoDB (+mongoose) as a

  • 0

Currently, I am implementing a blog application with nodejs/expressjs and
mongoDB (+mongoose) as a database. It works fine so far but now I am trying
to implement nested/threaded comments.

As I read about the different ways how to store such comments in
mongoDB I will store each comment in a separate document to retain
flexiblity.

In contrast to store all comments embedded in a thread I will retrieve
my comments in a unordered form from the DB with references to each parent…
Materialized paths would be an alternative but then, indexing can be problematic
due to their length.

I am planning to to the actual sorting client side when rendering
the comments – a good idea?

I read about backboneJS (relational) and ask myself if
this is a suitable tool that can help to implement it.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T13:37:17+00:00Added an answer on June 14, 2026 at 1:37 pm

    Yes storing the comments as separate documents in Mongo would be fine. Keyed lookups are generally fast in Mongo so maintaining a separate normalized structure of Threads and Comments should work.

    # Create thread:
    db.threads.insert({ id: 123, name: "My thread title..." })
    
    # Add comment:
    db.comments.insert({ id: 1, threadId: 123, text: "My comment text..." })
    
    # Find comments in thread by order of insertion (assuming ids are sequential):
    db.comments.find({ threadId: 123 }).sort({ id: 1 })
    

    Backbone is a good framework if you’re building a single page app. Additionally I’d suggest looking at Backbone Marionette. It’s an extension that makes a lot of cool things possible (good documentation too).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am currently implementing a basic raytracer in c++. Works pretty well so far,
I'm currently implementing a RESTful API (nothing serious, just for a blog engine i'm
I'm currently implementing a client application that POST's a file over HTTP and have
I'm currently implementing Scheme R5RS in C, and I am stuck trying to implement
I am currently working on a application that will be implementing user customizable widgets
I'm currently implementing a navigation system for routing through Europe. So far, I have
I'm currently implementing Highcharts to create graphs in my RAILS application. I'm using the
I am currently implementing S3 integration into my Rais application which uses Paperclip. Currently,
I am currently implementing a repository in my MVC 3 application. All the repository
I'm currently implementing a hash table in C++ and I'm trying to make a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.