Top "Mongodb" questions

MongoDB is a scalable, high-performance, open source, document-oriented NoSQL database.

How to use mongoimport to import csv

Trying to import a CSV with contact information: Name,Address,City,State,ZIP Jane Doe,123 Main St,Whereverville,CA,90210 John …

database mongodb csv import mongoimport
How can I run MongoDB as a Windows service?

How can I set up MongoDB so it can run as a Windows service?

mongodb windows-services nosql
"continue" in cursor.forEach()

I'm building an app using meteor.js and MongoDB and I have a question about cursor.forEach(). I want to …

javascript mongodb foreach meteor
MongoDB SELECT COUNT GROUP BY

I am playing around with MongoDB trying to figure out how to do a simple SELECT province, COUNT(*) FROM contest …

mongodb group-by aggregation-framework
How to define object in array in Mongoose schema correctly with 2d geo index

I'm currently having problems in creating a schema for the document below. The response from the server always returns the "…

node.js mongodb mongoose schema geo
How to paginate with Mongoose in Node.js?

I am writing a webapp with Node.js and mongoose. How can I paginate the results I get from a .…

mongodb node.js pagination mongoose
Update MongoDB field using value of another field

In MongoDB, is it possible to update the value of a field using the value from another field? The equivalent …

mongodb mongodb-query aggregation-framework
Cannot authenticate into mongo, "auth fails"

I've created an admin user for mongo using these directions: http://docs.mongodb.org/manual/tutorial/add-user-administrator/ From the mongo …

mongodb
How to sort a collection by date in MongoDB?

I am using MongoDB with Node.JS. I have a collection which contains a date and other rows. The date …

node.js mongodb