MongoDB
特性とユースケースの説明
Learn
なぜ早いのか?(トレードオフは?)
複数のテーブルをlookupしなくていいから、そのような用途では早い
公式が提供している
node公式のドライバとの性能比較
どっち使う?という議論
In my opinion, if your data manages "many to many" relationships you should use relational databases, even for "one to many". You can make complex relationships in mongodb, but you should make several calls to the database to populate the references, which translates into more code lines and more checks. If that does not concern you, then go for mongodb.
AWSやGCPでも使える
docker pull mongo
docker run --name some-mongo -d mongo
docker exec -it some-mongo bash
TIPS
save()はupdateのときに呼ばれないのでここにhookするとハマるらしい