Thread Reader
Share this page!
×
Post
Share
Email
Enter URL or ID to Unroll
×
Unroll Thread
You can paste full URL like: https://x.com/threadreaderapp/status/1644127596119195649
or just the ID like: 1644127596119195649
How to get URL link on X (Twitter) App
On the Twitter thread, click on
or
icon on the bottom
Click again on
or
Share Via icon
Click on
Copy Link to Tweet
Paste it above and click "Unroll Thread"!
More info at
Twitter Help
Saurabh Kumar
@nuLL_Programmer
Engineer || Speaker I talk about #nodejs. Cool things on the way
Subscribe
Save as PDF
Nov 1, 2020
•
7 tweets
•
3 min read
Yesterday one of my colleagues asked me about how to boost MongoDB performance.
I explained to him, and now it's worth sharing:
Performance tuning for
#MongoDB
:
1.
Create custom indexes for your queries.
see:
docs.mongodb.com/manual/indexes/
Thread 👇
#javascript
#Nodejs
2.
If you use mongoose always use "lean", by default mongoose queries return an instance of Mongoose Document class, and these are much heavier than vanilla javascript objects.
#javascript
#Database
#MongoDB
#NoSQL