Question : I wrote a function on nodejs to SELECT 150 million records, process the data and UPDATE those same […]
Tag: node.js
How to get the last 10 query run on MongoDB?
Question : I am using mongoose driver in my Node.js app and I want to know what queries mongoose run […]
Hexadeicimal data and corresponding MySQL field type
Question : I used some Node.js code to stream a file image before inserting it to the database. I have […]
MongoDB – _id as String instead of ObjectId ? Relationship between collections or duplicate data?
Question : Scenario: An entity called ‘accessPoint’ has an important attribute called ‘network’. The application will display some parts of […]
Mongodb automatic Replica Set creation with JS driver
Question : The MongoDB docs state that one can use the mongo client console to initialize replica sets by running […]
how to interact to second database through API on mongodb
Question : I am on Windows environment. I am using Mongoose and nodejs for my project. I have MongoDB Replication […]
How to handle large database updates with node js [closed]
Question : Closed. This question needs details or clarity. It is not currently accepting answers. Want to improve this question? […]
will this insert query take too long to run? [closed]
Question : Closed. This question needs details or clarity. It is not currently accepting answers. Want to improve this question? […]
Is mongoexport more optimized for querying than running the same query with a driver like “mongodb” for nodejs?
Question : I’m in charge of building a nodejs module that dumps varied amount of data from a mongodb into […]
How to update a field in a nested JSON document in Mongo?
Question : How to update a field in a nested JSON document in Mongo? { _id : ‘123’ friends: [ […]