[Answer]-Mongoose philosophy on being schema based

1👍

There is some structure even in unstructured data, and there is some schema even if it is schemaless 🙂

Try to find what all schema you can use with mongoose. If most of your data is having fixed schema, you should use it!

If most of your data is schemaless, dont bother about mongoose!

Yes, it is contradictory, but at the end, rapid prototyping,performance matters! 🙂

Leave a comment