Top "Mongodb" questions

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

MongoDB vs. Cassandra

I am evaluating what might be the best migration option. Currently, I am on a sharded MySQL (horizontal partition), with …

mongodb database-design cassandra database
MongoDB: Combine data from multiple collections into one..how?

How can I (in MongoDB) combine data from multiple collections into one collection? Can I use map-reduce and if so …

mongodb mongodb-query aggregation-framework
"Large data" work flows using pandas

I have tried to puzzle out an answer to this question for many months while learning pandas. I use SAS …

python mongodb pandas hdf5 large-data
E11000 duplicate key error index in mongodb mongoose

Following is my user schema in user.js model - var userSchema = new mongoose.Schema({ local: { name: { type: String }, email : { …

node.js mongodb mongoose
When to Redis? When to MongoDB?

What I want is not a comparison between Redis and MongoDB. I know they are different; the performance and the …

architecture mongodb nosql redis
Store images in a MongoDB database

How can I store images in a MongoDB database rather than just text? Can I create an array of images …

mongodb database
How to sort in mongoose?

I find no doc for the sort modifier. The only insight is in the unit tests: spec.lib.query.js#…

node.js mongodb mongoose
Mongoose: findOneAndUpdate doesn't return updated document

Below is my code var mongoose = require('mongoose'); mongoose.connect('mongodb://localhost/test'); var Cat = mongoose.model('Cat', { name: String, …

node.js mongodb mongoose
How to export all collections in MongoDB?

I want to export all collections in MongoDB by the command: mongoexport -d dbname -o Mongo.json The result is: …

mongodb export
Is mongodb running?

I have installed mongodb and the php drivers on my unix server. My question is how can I tell if …

mongodb unix database nosql