Answer the question
In order to leave comments, you need to log in
Is mongodb suitable for a task with few connections?
As a practice on Node.js, I decided to make a project.
I can’t choose a database, I’m looking at MongoDB because, as I understand it, this is the standard Node + Mongo bundle .
I will have literally several tables of the type:
User = {
name: String,
created_at: Integer
}
{
name: String,
from: User, // указатель на user._id
to: User, //указатель на user._id
created_at: Integer
}
будет несколько для 1 offer
OfferItem = {
name: String,
description: String,
offer: Offer, // указатель на offer._id
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question