Skip to content

Instantly share code, notes, and snippets.

@igoralves1
Last active August 3, 2019 16:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save igoralves1/2e54496b09371e9ea38b12079c5db341 to your computer and use it in GitHub Desktop.
Save igoralves1/2e54496b09371e9ea38b12079c5db341 to your computer and use it in GitHub Desktop.
# Can MongoDB handle 25k concurrent requests?
- https://www.quora.com/Can-MongoDB-handle-25k-concurrent-requests
# Is MongoDB still used nowadays when PostgreSQL support jsonb, and there are other great noSQL alternatives like Cassandra? What is the scenario where MongoDB is the best tool for the job?
- https://www.quora.com/Is-MongoDB-still-used-nowadays-when-PostgreSQL-support-jsonb-and-there-are-other-great-noSQL-alternatives-like-Cassandra-What-is-the-scenario-where-MongoDB-is-the-best-tool-for-the-job
# THE INTERNET OF THINGS: FROM THEORY TO REALITY
- http://info.forbes.com/rs/790-SNV-353/images/Hitachi%20IoT%20Report.pdf
# The Internet Of Things: From Theory To Reality— How Companies Are Leveraging IoT To Move Their Businesses Forward
- https://www.forbes.com/forbes-insights/our-work/internet-of-things/
# AVOID FALLING BEHIND BY EFFECTIVELY USING IOT
- https://www.forbes.com/forbes-insights/wp-content/uploads/2018/02/Hitachi_IoT_Infographic.pdf
# Intelligent World
- https://www.forbes.com/insights/intelligent-world-the-state-of-the-iot/#282b30e7b0d6
# Top 10 IoT Startups Of 2019 According To IoT Analytics
- https://www.forbes.com/sites/louiscolumbus/2019/07/18/top-10-iot-startups-of-2019-according-to-iot-analytics/#140cd603d074
# IoT In 2019: What Can We Expect?
- https://www.forbes.com/sites/danielnewman/2019/02/19/iot-in-2019-what-can-we-expect/#748e0dafc39a
#Insert Documents using a For Loop
- https://github.com/ynu/learn-mongodb/blob/master/src/get-started/insert-documents-using-a-for-loop.md
# Query Documents
- https://docs.mongodb.com/manual/tutorial/query-documents/
# Aggregation Pipeline Stages
- https://docs.mongodb.com/manual/reference/operator/aggregation-pipeline/
# Find objects between two dates MongoDB
- https://stackoverflow.com/questions/2943222/find-objects-between-two-dates-mongodb
({ timestemp: { $gt:ISODate("2019-08-02T01:17:00.000Z"), $lt: ISODate("2019-08-02T01:17:01.000Z") } })
# MongoDB / Node.JS: Inserting documents in a loop - variables not updating?
- https://stackoverflow.com/questions/32017577/mongodb-node-js-inserting-documents-in-a-loop-variables-not-updating
# Node.js Mongoose – Insert Multiple Documents to MongoDB
- https://www.tutorialkart.com/nodejs/mongoose/insert-multiple-documents-to-mongodb/
# How can I save multiple documents concurrently in Mongoose/Node.js?
- https://stackoverflow.com/questions/10266512/how-can-i-save-multiple-documents-concurrently-in-mongoose-node-js
# Mongoose (mongodb) batch insert?
- https://stackoverflow.com/questions/16726330/mongoose-mongodb-batch-insert
# Is there any option to limit mongodb memory usage?
- https://stackoverflow.com/questions/6861184/is-there-any-option-to-limit-mongodb-memory-usage
# How to Tell if Your MongoDB Server Is Correctly Sized For Your Working Set
- https://www.vividcortex.com/blog/how-to-tell-if-your-mongodb-server-is-correctly-sized-for-your-working-set
# Some Useful Tips for MongoDB Memory Management
- https://dzone.com/articles/some-useful-tips-mongodb
# MongoDB + mongo-express + Docker Compose: montando rapidamente um ambiente para uso
- https://medium.com/@renato.groffe/mongodb-mongo-express-docker-compose-montando-rapidamente-um-ambiente-para-uso-824f25ca6957
# 4 Steps to Select the Right Database for Your Internet of Things System
- https://thenewstack.io/4-steps-to-select-the-right-database-for-your-internet-of-things-system/
############
### MongoDB
###########
# Performance
- https://docs.mongodb.com/compass/master/performance/
- https://docs.mongodb.com/manual/administration/analyzing-mongodb-performance/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment