0
votes
0answers
12 views

Dynamic Data inside MongoDB

I'm making dynamic data storage, which it was in relational data base as: form -> field form -> form_data field -> field_data form_data -> filed_data and field data contains field_id, form_data_id, ...
0
votes
1answer
20 views

Nested (children) comments within a single parent comment in MongoDB

Question: Do I nest my child comments within a single parent comment or not? Overview: Creating comment system Comments can have children Right now each comment child or parent is stored as one ...
0
votes
1answer
43 views

How to achieve database abstraction/independence in NoSQL world

We are looking at using MongoDB as our database in our Java Server-side application. In my earlier project we were using Hibernate to abstract the underlying SQL database, so that we could switch from ...
0
votes
0answers
17 views

Mongodb Redis Proxy [closed]

I am using node. I have a module that needs redis. I need to have a fake redis connection that acts as a proxy to mongo. Is this possible and does it exist? Just to clarify, I am open to creating my ...
0
votes
1answer
30 views

How to update multiple MongoDB servers simultaneously - direct mode or replica set?

I am interested in using MongoDB as a cache servers. I am relatively new to Mongo so bear with me ... One of the tasks I should perform is the following: Retrieve records from database and update 2 ...
0
votes
1answer
41 views

Designing a database for querying by dates?

For example, I need to query the last 6 months by the earliest instance for each day (and last day by earliest instances in each hours, and last day by minutes). I was thinking of using MongoDB and ...
1
vote
1answer
26 views

Performance gain by using bulk inserts vs regular inserts in MongoDB

What is the performance gain by using bulk inserts vs regular inserts in MongoDB and pymongo specifically. Are bulk inserts just a wrapper for regular inserts?
0
votes
0answers
18 views

Mongokit no collection found error

I'm trying to save an object to mongodb with Mongokit. For some reason I am getting a "Connection Error: no collection found", only for this particular class model, Game. I have defined the ...
0
votes
1answer
43 views

The best way to store millions of 100kb/Ave. records

We are in a situation that we need to store millions of records everyday, Data Structure Model: id date title ... Data [RAW TEXT] Our [RAW TEXT] is different each time, from ~30KB to 300KB, and ...
0
votes
0answers
34 views

Should I use Schemas in mongo db or could I add documents without models too?

If I use mongoose I need to create a new Schema: var MySchema = mongoose.model('MySchema', { ID: String }) and only after that I can add a new document: var myDocument = new MySchema({ID: ...
1
vote
1answer
27 views

How to create a new db in mongoose?

If I use Mongoose in node.js I need to do: var mongoose = require('mongoose'); mongoose.connect('mongodb://localhost/myDB'); But what if I just installed mongodb and I don't have any DB at the ...
0
votes
0answers
37 views

Mongodb with php on Windows 7 (32 bit) with apache not working

I am trying to run mongodb code with the following system configuration: Operating System: Windows 7 (32 bit) PHP Version: 5.2.9 Apache Version: Apache/2.2.11 (Win32) DAV/2 mod_ssl/2.2.11 ...
2
votes
1answer
25 views

Start Mongodb for evermore

I have a desktop application that use from Mongodb! For every time I Should run hhhh@kkkk:~$ mongod then run my program. But I want run mongod for evermore.Is it possible?
0
votes
1answer
28 views

How to select which database to use for object storing

I want to deploy a small web project I have in mind, where the data I want to save are structs with nested structs inside, and most of the times the inner structs does not have the same fields and ...
0
votes
1answer
24 views

MongoDB query issue - error after second query

Right, I have this really weird problem, that is probably more related to how MongoDB works rather than a coding issue. I'm making a website in Javascript (mostly) that is very heavy on jquery, using ...
1
vote
1answer
44 views

Mongodb time series query

I'm new to MongoDB coming from a relational world. Any help would be greatly appreciated. I have a list of patients with the following attributes: {"id": 101, "demographics": {"sex": ...
0
votes
2answers
34 views

MongoDB Query by Key's value

Is it possible to execute a query where you constrain it to a key's value? ex. "1":{ ... } "2":{ ... } "3":{ ... } Execute a query where the keys value is less than 3 and ...
0
votes
1answer
28 views

What is the right way to select records from mongodb document

I"m new in mongodb and I really like the idea of noSql. I"m trying to build a blog where on each comment people can click on rate buttons and rate the person comment. Inside each comment I have a ...
1
vote
1answer
28 views

Flask/Mongo/Jinja - Slicing a ListField and showing the last entries of the database

I have a list with 12 categories inside an object, I want to get the first 3 itens of this list and show only the last entry of the database of each one of these 3 itens. What am I doing wrong? I ...
0
votes
1answer
39 views

how to add a dictionary to array in Mongodb

I Use from Mongodb and have a collection like this: {'name':'vahid','visited':[{id:1,'date':'1223123',noskhe:['a','d','h']]} I want an update query to add {id:2,'date':'324324',noskhe:['d','n']} ...
-3
votes
0answers
75 views

Which is the best NOSql option for several scenarios. what are the differences among them? [closed]

I would like to know which is the best option for NOsql databases for the scenarios presented in the end of the question. What are the benefits and the disadvantages of each one, The main databases ...
0
votes
1answer
26 views

How to project the $in operator as a boolean in mongodb?

feed = coll.aggregate([ {'$project' :{'Upvoted' : {'Upvoters' : {'$in' : [ObjectId(userid)]} }}}, {'$match' :{ '$or': [ {"_id": ObjectId(userid) }, {"Friends": ...
0
votes
1answer
23 views

MongoDb casscade update/delete

I'm trying to use mongoDB with Morphia but still I have a problem with deleting documents. Is there any additional plugin or wrapper which works with Mongo and provides something like transactions in ...
0
votes
1answer
42 views

Structure Statistics Data for MongoDB

We have videos who got a certain amount of views every day. I was thinking doing: { video_name: "Blabla" stats: [ {day: x, views: 342} {day: x, views: 342} ] } However, ...
1
vote
2answers
43 views

Using a Database vs a Collection in MongoDB

I am building a site with users who have discussions and write blogs and plan to use MongoDB as the database for the site. Which architecture option would be more efficient and allow for easier data ...
0
votes
1answer
76 views

MongoDB: can't convert from BSON type EOO to Date

I' trying to use aggregation framework (with ruby) and project the date like this: db['requests'].aggregate([ {"$project" => { _id: 0, method: '$method', user: '$user', year: ...
0
votes
1answer
53 views

Mongoid: Order by field and skip N records

I have a collection with the following data: { "_id" : ObjectId("516b969beceaed363a000027"), "user" : "276", "item" : "796", "rating" : 1, } I want to order by user and then within each ...
0
votes
0answers
70 views

MongoDB -> Design decision for huge datasets

here is my problem. I have a 50 cities (a,b,....), each city contains up to 4000 addresses (a1, a2, ... or b1, b2, ...) and each of these addresses contains a list with 10.000-40.000 ...
0
votes
4answers
81 views

Which database fits for 14 million records with PHP as frontend [closed]

I have to work on the business search portal in which, i think the proposed records to be entered and searched would be around 14 million. I am planing to use PHP as frontend and Mysql as backend. ...
0
votes
2answers
15 views

How to organize this setup with MongoDB

I'm coming from a strictly MySQL background and MongoDB is my first contact with NoSQL. Let's say I have a bunch of users and a bunch of groups. The user schema: user_id username email The group ...
0
votes
1answer
21 views

User relation to group and company MongoMapper

I have need to create a system where a user can login with a user account where a user is a member of a group like admin or editor. Also a user is a member of a company. in both cases of groups and ...
1
vote
1answer
90 views

GeoJSON and MongoDB: Is it worth it to store points as GeoJSON.Point?

With the introduction of 2.3 > MongoDB has become even more useful with location data handling and querying. MongoDB stores documents as BSON, so each document with have all the document fields, ...
0
votes
0answers
50 views

HTML5 Audio Streaming App - how can I build a MongoDB collection from a unix directory's contents [closed]

I want to build an app that is basically a simplified version of GrooveShark or Spotify. It is for my own consumption so I can access and stream my music library over the internet. The challenge I ...
0
votes
1answer
44 views

Getting a count of Documents (Rows) using mapReduce in MongoDb

I hate to re-post this stuff but i feel as though I've typed exactly the same syntax as most of the issues I've looked up. I'm trying to simply map down a count of how many rows there are with a price ...
2
votes
1answer
34 views

Searching for ranges in mongo

What's the most efficient way to find data in Mongo, when the input data is a single value, and the collection data contains min/max ranges? E.g: record = { min: number, max: number, payload } Need ...
0
votes
1answer
50 views

Mongoose bidirectional models / many to many relationships

Fairly new to mongoose so I'm looking for the best way to do this. I have two models: Users and Companies. A user can have many companies and a company can have many users. Right now my Company ...
0
votes
2answers
54 views

Am i correctly using indexes for this mongoDB?

So i need some advice as to what i'm doing incorrectly. My database is setup up exactly like a file system consisting of folders and files. It begins with a folder, but can have a relatively infinite ...
1
vote
1answer
21 views

Performing a non '$set' update with Mongoose

The Mongoose documents note that any Model update is automatically sent using '$set': var query = { name: 'borne' }; Model.update(query, { name: 'jason borne' }, options, callback) // is sent as ...
1
vote
1answer
217 views

nosql: MongoDB, Cassandra or alternative for data warehousing

I am stuck between a concrete decision on whether to go with MongoDB or Cassandra for my database needs and would like input on my use case as to guide my decision. Requirements: Data source X ...
0
votes
1answer
48 views

How to use '$match' Aggregation Operators of MongoDB to match with the id of embedded document?

Scenario: Consider the document present in the MongoDB in collection named 'MyCollection' { "_id" : ObjectId("512bc95fe835e68f199c8686"), "author": "dave", "score" : ...
0
votes
1answer
123 views

Insert large amount of entries into Mongodb with Nodejs

So I have a file that contains "pins" which I need to input into mongodb. THey are contained in a file called pins.txt and the data is new line delimited: A4DS24SD2 DF234SDF2 HFFGHFG45 JDRSDFG35 ... ...
1
vote
1answer
38 views

The most performant way to query against three collections, sort them and limit?

I am in need of querying against 3 different collections. Then I need to sort the collection results (each based on different field and order but every time a DateTime value), and then finally limit ...
0
votes
0answers
75 views

Updating element in array inside document with MongoDB not preserving its type

In my project there is a structure like so: class User { private List<MapObject> mapObjects; } class MapObject { ... some fields... } class SubMapObject { ... some additional fields } ...
0
votes
2answers
28 views

Query on results of query in MongoDB

I have a mongo database and several collections in it. I want to remove from collections all entiries that match, say, target_id. The trick is that I also have to remove entries "connected" to entries ...
1
vote
1answer
89 views

storing live data in Mongodb

I am pushing data to a server using an API from a website. Every time my arduino detects a pulse it sends it to COSM. And by using a trigger, the data goes to my server. I was initially writing the ...
1
vote
2answers
48 views

MongoDB copy a field to another collection with a foreign key

I want to copy over the color from user collection to the Car collection. I'm using a foreign key which is userID. > db.test1.User.find() { "_id" : ObjectId("515f7db83f71d6bcb1c41a48"), "age" : ...
2
votes
1answer
93 views

Memory efficient way to import large files and data into MongoDB?

After recently experimenting with MongoDB, I tried a few different methods of importing/inserting large amounts of data into collections. So far the most efficient method I've found is mongoimport. ...
3
votes
1answer
59 views

Mongo many to many

I'm trying to model a many to many relationship where a Customer 'loves' a Food. I'm expecting to get lots (millions) of these relationships so I didn't want them to all end up in one join table that ...
0
votes
0answers
37 views

Is there any equivalent in MongoDB for MS-SQL command 'SET IDENTITY_INSERT tablename OFF'? [duplicate]

I was trying to update a _id field of a document in MongoDB. The following is the command I derived based on my understanding. ...
0
votes
1answer
40 views

How to rename a Stored JavaScript in MongoDB?

Consider, I have a following Stored JavaScript in MongoDB {_id: "sum", value: function (x, y) { return x + y; }} It is been created by following command in MongoDB shell db.system.js.save({_id: ...

1 2 3 4 5 16