MongoDB is a scalable, high-performance, open source, document-oriented database. It supports a large number of languages and application development platforms.
0
votes
1answer
21 views
Add undefined fields in MongoDB
I have created Mongo model like described here: http://docs.mongodb.org/ecosystem/tutorial/model-data-for-ruby-on-rails/
But it's like creating schema. I need to add fields, that I initially don't ...
0
votes
1answer
41 views
meteor: how to disable default mongodb?
in my meteor project, how can i remove or disable the default mongdodb?
.meteor/local/db/...
it's very large about 500MB! and i want exclude this from my project because use another external db
0
votes
1answer
55 views
How do I setup MongoDB database on Heroku with MongoLab?
I'm using Express.js and MongoLab and I followed the Heroku setup to get MongoDB working in production throwing this code in my app.js.
//Mongo on Heroku Setup
var mongo = require('mongodb');
var ...
0
votes
0answers
25 views
Best way to stream videos from mongoDB gridFS
I have to develop solution to stream videos from gridFS.
What is the most elegant (FASTEST) way to stream videos from mongodb gridFS?
I did some google searching and saw few options:
gridfs-stream
...
0
votes
1answer
31 views
Batch Save to MongoDB C# Driver
I am having difficulty batch saving MongoDB documents using the C# driver. Here's sample code that inserts a Document with a GUID BsonID. Saving one at a time works. If I insert the documents into a ...
0
votes
1answer
15 views
How can I do mapping from AggregationOutput to a POJO?
For a complicated query I descended to MongoDB Java API (using Spring-data for most of my stuff) and I wrote a aggregate statement using BasicDBObjects.
DBCollection users = ...
0
votes
1answer
25 views
How do I make a simple form GET and POST using Express and Mongo?
I'm trying to follow this Express.js and MongoDB tutorial with the difference of making my index page have a form where you save an email address.
This is the main code so far:
emailprovider.js
var ...
0
votes
1answer
18 views
Click counter implementation with MongoDB - asynchronous write
I would like to implement a click counter using MongoDB (e.g. user clicks a link, count the total clicks).
My intuitive approach is to have an in-memory low priority thread pool that will handle a ...
0
votes
1answer
9 views
Access mongoose non-schema values in Jade
I have a really weird problem in Jade where I cannot access the values that aren't defined in the Schema.
I'm using strict:false on my schema and saving values to it. My data looks like this:
{
...
1
vote
1answer
48 views
MongoDB Find Query Not Returning All Values
I have a mongoDB collection of sensor values where I'm trying to find all the documents in the collection that are within a certain date range. I've read the documents and have actually implemented ...
2
votes
0answers
33 views
Running MongoDB queries from AS3 client?
Is it possible to run native Javascript functions for the mongo shell on server side from AS3 client AIR app?
I have a lot experience in running Javascript methods embedded/loaded on HTML where SWF ...
0
votes
1answer
25 views
Mongoose + NodeJS Phorum Schema
Hi i'm building a phorum with NodeJS and MongoDB. Im really new with this tecnologies, and i have some questions. I have the current schema in my mind for buid this. There are Areas, that have ...
1
vote
3answers
39 views
Mongo: How to count how many values in fields?
I have collection
[
{
data: {
height: 1,
width: 2
}
},{
data: {
height: 3,
width: 2
}
},{
data: {
...
0
votes
1answer
38 views
MongoDB and Aggregation Framework
I have the following collection in mongodb.
{ "_id" : ObjectId("519a35ee8f2ceda43f42add5"), "articulo" : "Sobre mongodb", "autor" : "xxxx1", "calificacion" : 3 }
{ "_id" : ...
0
votes
0answers
42 views
JSON.NET cast error when serializing Mongo ObjectId
I am playing around with MongoDB and have an object with a mongodb ObjectId on it.
When I serialise this with the .NET Json() method, all is good (but the dates are horrible!)
If I try this with the ...
0
votes
0answers
10 views
Morphia converter calling other converters
I want to convert Optional<BigDecimal> in morphia. I created BigDecimalConverter, and it works fine. Now I want to create OptionalConverter.
Optional can hold any object type. In my ...
0
votes
1answer
28 views
Query MongoDB between two dates groovy
I'm trying to get all documents between two dates using groovy. I've tried several approaches and haven't been successful. Most lately I've tried the approach listed here Java/MongoDB query by date
...
0
votes
2answers
39 views
Mongodb update several documents with different values
i am trying to update several documents in mongodb with different values each.
In mysql I do something like this:
$objs = ...
-2
votes
1answer
19 views
unknown option in starting mongod using configuration file
command that i use to launch mongod
# ./mongod -f /etc/mongod.conf
error command line: unknown option for
use --help for help
my configuration file
# cat /etc/mongod.conf
for=true
...
0
votes
1answer
34 views
Can't instantiate the MongoClient class
I'm trying to use the MongoDB driver with Nashorn but I can't instantiate the MongoClient class, do you have any ideas why?
var mongodb = Packages.com.mongodb;
var MongoClient = mongodb.MongoClient;
...
0
votes
1answer
24 views
Why Group is slower than $group from Aggregate?
I tried to bench 3 methods to group data: native js (with underscore), group and Aggregate with $group
I uses these datas (genre/position' trees in Paris) (237 168 rows, 35Mo)
This is my script test ...
1
vote
1answer
27 views
Query mongoDb with REST interface
This is my collections:
{
"offset" : 0,
"rows": [
{
"_id" : { "$oid" : "5199e109f456aab938b304de" },
"type" : "cluster",
"id" : "1",
"vertices_transformation" : [ ...
1
vote
0answers
18 views
codeIgniter mongoDB delete document not work with id
This is not working:
function delmodel()
{
$this->mongo_db->where->(array('_id'=>'5195b4293f8f31362a4f2093'))->delete('links');
}
This is working:
function delmodel()
{
...
1
vote
1answer
31 views
Best practices for mongoid relations
I am mapping relations in mongoid, I want to know the best practices for mongoid.
Models
Customer
Service
Supplier
there are four different services (S1, S2, S3, S4), each service provided by ...
0
votes
1answer
25 views
Is there a 'contains' functionality on a collection of ObjectId property of a domain object for withCriteria?
I have a Subscription domain object which has a List of ObjectId as one of its properties, say 'subscribed'. I'm on Grails 2.1.2 and MongoDB.
class Subscription {
ObjectId id
...
0
votes
3answers
34 views
how can i see the latest records initially when i do collection find?
I have some huge collection of records resent in my mongodb
This is the sample
db.logins.find().pretty()
"cust_id" : "testuser",
"error" : "no error"
"cust_id" : ...
1
vote
1answer
25 views
Strange thing about mongodb-erlang driver when using replica set
My code is like this:
Replset = {<<"rs1">>, [{localhost, 27017}, {localhost, 27018}, {localhost, 27019}]},
Conn_Pool = resource_pool:new (mongo:rs_connect_factory(Replset), 10),
...
...
-1
votes
0answers
14 views
call a javascript function using mongoose in mongodb [closed]
I have a auto-increment javascript function saved in mongodb and I would like to call that function from nodejs using mongoose. But I'm unable to do so
1
vote
1answer
38 views
Rails database name dynamically by user choice in Mongodb
While installing my app , I want to ask question like
Name of database?
and user will input name they want for database.
Database name is inside config/mongoid.yml
development:
sessions:
...
-1
votes
1answer
18 views
Fetch all mongoid documents based on condition
class name is Usersdata
In mongo
{id:100,createdby:900,.......}
{id:200,createdby:900,.......}
{id:300,createdby:900,.......}
{id:400,createdby:800,.......}
{id:500,createdby:800,.......}
I want ...
0
votes
1answer
27 views
mongodb , node.js, combbo, deploying on heroku, mongod
I am new to mongodb and node.js. I have a simple node.js app that in order to run I have to run the command
mongod
to make sure mongodb is running.
locally this works fine.
now I am moving to ...
0
votes
1answer
41 views
Problems with queries in mongodb
I am starting to use MongoDB and I have a problem in consultation with queries. The following error always happens.
db.user_tracking.distinct("q")
Sun May 19 20:02:01.785 JavaScript execution ...
0
votes
2answers
19 views
C# MongoDB multiple similar records
I have just started using MongoDB and have a question... how do I do the following:
var testrec = new TestClass
{
Name = "John",
Address = "10 Here St",
RecordType = "A"
};
db.Save(testrec);
...
0
votes
2answers
25 views
Benefit of $snapshot with Mongo? Is it okay to disable by default?
This Mongo page explains what the $snapshop command does, but can someone explain why this would be helpful, or whether it's wise to disable by default?
We're using MongoMapper on Rails 3.2.12, and ...
0
votes
1answer
43 views
What is the state of BreezeJS integration with express and mongo DB?
I have forked BreezeJS and I have the EpressDemo running, the server is working and is connecting to Mongo. Though the DB is empty ( if anyone could tell me how to setup the initial data... ) the ...
0
votes
1answer
24 views
MongoDB find().count() - SyntaxError: missing : after property id (shell):1
Have a .json data-supplied collection of tweets..
Looking to count Delete-Requests in Sessions:
db.tweets.find({"delete"}).count()
And this syntax is incorrect because SyntaxError: missing : after ...
0
votes
0answers
25 views
Information extraction, indexing and search of PDF, word and text documents with MongoDB
Does MongoDB have a feature where I could store PDF, text or .doc/docx documents and search for them
or do a match between two documents on a keyword found in their content?
For example:
I might ...
0
votes
0answers
53 views
Need advice on making a real-time web app [closed]
Hi I'm working on a collaborative web based document editing app and I'm looking for some advice on transitioning to Node.js. Currently it's PHP/MySQL server side and the editor is client side JS. ...
0
votes
1answer
20 views
Mongo geolocation using $near and 2d index not being accurate
I've written an application that finds local establishments and delivers them via a RESTful API. My stack is: express, express-resource and mongoose. Here is a sample of my model:
var PlaceSchema = ...
0
votes
1answer
31 views
Ruby Tweetstream MongoDB Error
I keep getting the following error when running the following ruby script. If anyone can help me fix this it would be greatly appreciated. I've removed any sensitive data such as API keys.
Code:
...
0
votes
0answers
38 views
MongoDB Aggregate Functions
I am trying to do a group by on a MongoDB collection (my version is 2.2.2)
db.stream.aggregate({$group: { MyId:"A1"}})
But I get the following error:
19 11:56:20 TypeError: db.stream.aggregate is ...
1
vote
1answer
36 views
Is it possible to group and sum multiple columns with MongoDB's aggregation framework?
Given this MongoDB collection:
[
{ character: 'broquaint', race: 'Halfling', class: 'Hunter' },
{ character: 'broquaint', race: 'Halfling', class: 'Hunter' },
{ character: 'broquaint', race: ...
0
votes
0answers
26 views
“Not equal” named scope in rails with Mongoid
I have two models Content and ContentType. In Content model I can do:
def get_all_content_except_poking_message
Content.all.where(:name.ne => "no forking, just poking")
end
Now, I am trying to ...
0
votes
1answer
32 views
Pymongo object has no attribute 'remove'
I have modified list.html template from flask-mongokit exmaple.
Added "check boxes" with name "ck" and a delete link.
{% extends "base.html" %}
{% block body %}
<h2>All ...
0
votes
1answer
34 views
Group by date in mongoose
this is my appointment collection
{ _id: ObjectId("518ee0bc9be1909012000002"), date: ISODate("2013-05-13T22:00:00Z"), patient:"John" }
{ _id: ObjectId("518ee0bc9be1909012000002"), date: ...
0
votes
0answers
13 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
18 views
PHP/MongoDB - Add subdocument to document with _id
I am trying to learn MongoDB with PHP. I can successfully save a new document with ->save($object). My goal is to add a subdocument to a document with a specific _id.
I have a document:
...
0
votes
0answers
34 views
rake db:seed error for Rails app using MongoDB, sunspot_solr
I am working on a Ruby on Rails application that uses MongoDB, and I have implemented basic Sunspot functionality. Here is some information about my environment
Rails 3.2.11
Mongo 2.4.3
Sunspot ...
0
votes
1answer
39 views
How to download mongo database from website hosted at origin.meteor.com
Is it possible to download the complete mongo db from an app hosted on meteor's servers in order to transfer it to Heroku, other than just to download each Collection individually?
1
vote
0answers
19 views
BaseX GUI and MongoDB
BaseX focuses on storing, querying, and visualizing large XML and JSON documents and collections.
Is there any way to query MongoDB documents and use BaseX visualizing ability?






