Tagged Questions
1
vote
1answer
36 views
ChicagoBoss doesn't seem to be saving the right values into MongoDB
So I've worked my way through an evening with ChicagoBoss. I am now currently trying to wire up ChicagoBoss with MongoDB to build an app with it (and learn two new technologies I've been eyeing in the ...
0
votes
1answer
21 views
MongoDB $in - only one value and no others
Wasn't really sure how to title this question, but hope the explanation is clearer
I have a document like
{
_id: "User1",
skills: [
{
ty: "coding",
inf: "c" ...
0
votes
2answers
17 views
mongodb: arithemtic operations in .find()
how can I find records where retirement subtract age is less than 10
db.users.insert({
user_id: "bcd001",
age: 56,
retirement: 65,
status: "A"
})
1
vote
2answers
108 views
The Current State of Mongo DB 2013 [closed]
I've been using MongoDB (via MongoLab) for all of my web app development and have been loving it's ease of use and integration with AngularJS. Recently however, a lot of people I work with who were at ...
1
vote
2answers
49 views
Handling optional/empty data in MongoDB
I remember reading somewhere that the mongo engine was more confortable when the entire structure of a document was already in place in case of an update, so here is the question.
When dealing with ...
1
vote
2answers
67 views
Recommend a NoSQL database to replace this MySQL database containing large objects and many attributes
I'm looking for an alternative database for MySQL (Engine = MyISAM).
My Java application stores large objects with 250 - 300 attributes each. There are about 500 millions objects on a single MySQL ...
0
votes
0answers
26 views
Aggregate: return document with no subdocument OR with latest subdocument only
This is a more complex version of the query in this question
I've got these Mongoose Schemas:
var Thread = new Schema({
title: String, messages: [Message]
});
var Message = new Schema({
...
0
votes
1answer
35 views
Capped Arrays in MongoDB 2.4
MongoDB 2.4 introduces Capped Arrays:
http://docs.mongodb.org/manual/release-notes/2.4/#limit-number-of-elements-in-an-array
Considering the following document structure (with nested array) :
...
0
votes
1answer
50 views
return document with latest subdocument only in mongodb aggregate
I've got these Mongoose Schemas:
var Thread = new Schema({
title: String, messages: [Message]
});
var Message = new Schema({
date_added: Date, author: String, text: String
});
How do you ...
0
votes
2answers
54 views
comment system rdbms vs nosql
What is the best way to implement a commenting system (huge data writing)?
1) Use a RDBMS database such as MySQL, 2 tables one for the topics and one for the comments
Pros is that the insertion of ...
0
votes
2answers
18 views
Add several subdocument in mongodb
i have the following strucure:
{
'name':'something',
'commens':{
'value':'something'
}, {
'value':'something else'
}
}
My question is, how can i ...
-1
votes
0answers
59 views
Django and NoSql - use or not [closed]
Is a good idea to use a NoSQL(couch db/mongo) database with django? The project will operate on multiple files, upload, ocr integration, categorizing files, parsing text document etc.
Is this a good ...
-1
votes
0answers
22 views
Schema Design in MongoBD vs Mysql
I trying to design small database schema for CMS like Drupal, let image we have node_types and each node_type has alot of different fields(name, age, price ..)
and I design database for node_type like ...
1
vote
1answer
30 views
Analysis of MongoDB and Badges system
We are developing a system which does some statistical analysis based on social networking data, eg: tweets, status updates etc. I was thinking to store user related information on a relational ...
0
votes
1answer
17 views
Eclipselink NoSQL embedded documents are Binary or run into an infinite loop while persisiting
I have a Category Class:
@Embeddable
@NoSql(dataFormat=DataFormatType.MAPPED)
public class Category implements Serializable {
@Id
@GeneratedValue
@Field(name="_id")
private String id;
...
1
vote
2answers
66 views
Migrating Azure Table storage
I have a cloud native app based on azure. The app uses azure table storage.
Due to a fantastic opportunity I have decided to also provide the app on-premises. So I have to replace the NoSql data ...
0
votes
1answer
36 views
MongoJS: size() method or length not available
I just installed the latest versions of node.js and MongoDB and a driver for node.js: MongoJS
Now I tried to find out (with good performance due a high load app) if a record exists in the database. I ...
1
vote
1answer
35 views
MongoDB GeoNear Aggregate
The question is:
Consider the following location: [-72, 42] and the range (circle) of radius 2 around this point. Write a query to find all the states that intersect this range (circle). Then, you ...
1
vote
1answer
23 views
Sorting on GeoWithin MongoDB
So I made this query:
db.zips.find( { loc : { $geoWithin : { $box :[ [ -90 , 30 ] , [ -80 , 40 ] ] } } } )
And here is one (out of many) outputs:
{ "city" : "APISON", "loc" : [ -85.016404, ...
0
votes
2answers
54 views
Atomic in MongoDB with transfer money
I'm new for MongoDB
I make a simple application abount account in bank.an account can transfer money to others
I design Account collection like that
account
{
name:A
age: 24
...
0
votes
1answer
49 views
Solution to Bulk FindAndModify in MongoDB
My use case is as follows -
I have a collection of documents in mongoDB which I have to send for analysis.
The format of the documents are as follows -
{ _id:ObjectId("517e769164702dacea7c40d8") ,
...
0
votes
1answer
30 views
Django-nonrel Status
Is Django-nonrel still active? I am interested on developing an e-commerce website that involves tons of catalogs and it seems like NoSQL is the best approach for this. I have background in Django but ...
0
votes
1answer
42 views
Mongodb update with upsert and multi syntax
I am new to mongodb and so stressed out because of mongodb's incomplete documentation leaving me for trial and error... sadly, all my attempts are not working with no error, leaving me confused about ...
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
26 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 ...
-3
votes
0answers
72 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 ...
-1
votes
1answer
49 views
ruby inserting hash into mongodb, getting undefined method `has_key?
i am trying to insert hash into mongodb using ruby mongo driver. i get undefined method has_key? error
below is the code
require 'rubygems'
require 'mongo'
include Mongo
@client = ...
0
votes
1answer
25 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
2answers
38 views
Removing DBRef from document
I have entity Group
@Entity("Group")
public class Group implements Serializable{
@Id
public ObjectId id;
public String name;
public List<Students> studentsList;
}
and entity Student
...
-1
votes
0answers
65 views
Which NoSQL DB to test for log analysis
I have a server application that collects the user operation data sent by my client application.
There are few hundred operators, around 100 different kind of events that may be collected, and each ...
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
60 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: ...
-1
votes
0answers
33 views
Looking for examples for mongoDB [closed]
I'm looking for mongoDB datasets for research purposes.
I've looked for examples on the web, but I've not found anything useful (just small examples or a list of companies using mongoDB).
Do you know ...
0
votes
0answers
69 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
14 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 ...
1
vote
2answers
75 views
Blogs and Blog Comments Relationship in NoSQL
Going off an example in the accepted answer here:
Mongo DB relations between objects
For a blogging system, "Posts should be a collection. post author might be a separate collection, or simply a ...
-2
votes
2answers
61 views
Idea requried in Detail about NoSQL DB? [closed]
1.What does it provide and solve ?
2.Where it’s been used and what business problems it solves (this can be wide variety ranging from size to performance to scalability, consistency, others).
...
0
votes
1answer
41 views
One to many Mongo strategy with query on both collections
I've got two collections: one with ~7.600.000 documents containing information about available trips and one with ~5000 documents containing information about hotels with region, city and country ...
1
vote
2answers
107 views
MongoDB: How to get distinct list of sub-document field values?
Let's say I have the following documents in collection:
{
"family": "Smith",
"children": [
{
"child_name": "John"
},
{
"child_name": "Anna"
...
1
vote
2answers
29 views
Query-first approach for MongoDB?
I'm beginning to design a brand new MongoDB database for a project that will surely have a lot of concurrent access.
I'm choosing MongoDB for I know how scalable it is and how fast my queries will be.
...
0
votes
0answers
19 views
How to put the following through mongoexport?
I have the following query, where I must reformat the output in javascript:
db.my_items.aggregate({
$match: {
// ...
}
},{
$project: {
_id: 0,
myField: 1
}
...
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 ...
0
votes
0answers
30 views
Why query for indexed fields is indexOnly = false
I have collection users with default index _id.
I make this query:
db.users.find({ }, { "_id" : 1 }).limit(50);
Or this query:
db.users.find({ "_id" : NumberLong("382748936301357196") }, { "_id" ...
1
vote
0answers
38 views
MonoDb creates connection every single operation on collection
I'm using mongodb-java-driver, and nothing else except that. I created singleten EJB with connection to Mongo.
@Singleton
public class MongoConnection {
private DB db = null;
private MongoClient ...
0
votes
1answer
28 views
MongoDB: is there a way to tweak the output?
For the following command:
db.my_items.aggregate({
$match: {
// ...
}
},{
$project: {
_id: 0,
myField: 1
}
}).result.forEach(function(obj) {
...
0
votes
1answer
38 views
Database approach to use for Dynamic Form Data Collection which is suitable for good Reports and Searching
I am working on a project which involves collecting dynamic form data. These forms are user-defined (think surveymonkey) and thus a fixed schema cannot be defined for them. Data in terms of ...
1
vote
1answer
196 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
44 views
Relationships in MongoDB (via Mongoose)
Consider a typical blog application where a blog can have many posts and a post can have many comments.
Assume we want to provide a RESTfull API to access it.
If I were to use a relational database ...
1
vote
1answer
31 views
Updating a 3-level nested value in MongoDb
From [MongoDb's official documentation about updating] (http://docs.mongodb.org/manual/core/update/#Updating-The%24positionaloperator), I read:
The following operation queries the bios collection ...

