Tagged Questions

Mongomapper is a Ruby gem allowing you to map ruby objects to MongoDB documents.

learn more… | top users | synonyms

36
votes
5answers
4k views

Mongodb: What to know before using?

I'm starting a hobby (non-revenue) project using Ruby on Rails. I've done a fair amount of development in Rails using Postgresql, and I can make a pretty good imitation of normalized schema. ...
33
votes
11answers
7k views

Mongoid or MongoMapper?

I have tried MongoMapper and it is feature complete (offering almost all AR functionality) but i was not very happy with the performance when using large datasets. Has anyone compared with Mongoid? ...
15
votes
7answers
3k views

MongoMapper and migrations

I'm building a Rails application using MongoDB as the back-end and MongoMapper as the ORM tool. Suppose in version 1, I define the following model: class SomeModel include MongoMapper::Document ...
12
votes
3answers
3k views

How to mix mongodb and a traditional db in Rails?

I am considering using MongoDB (mongo-mapper) for a portion of my rails application. I am not ready to go whole hog MongoDB because there are too many useful gems that depend on a traditional DB. ...
11
votes
8answers
2k views

What is your prefered ODM in Ruby ? MongoMapper, MongoID or MongoDoc?

In ruby, there are currently 3 ODM maintained: MongoMapper Mongoid MongoDoc What is your prefered and why ?
9
votes
1answer
366 views

Understanding MongoMappers many relationship

Ok, so firstly Im not very in the know when it comes to Ruby, Rails, Mongo or even ActiveRecord so I apologise if these questions are fairly basic. Firstly, I have an "Event" model and I have added a ...
7
votes
2answers
898 views

Understanding MongoDB (and NoSQL in general) and how to make the best use of it

I am beginning to think that my next project I am wanting to do would work better with a NoSQL solution. The project would either involve a ton of 2-column tables or a ton of dynamic queries with ...
6
votes
1answer
244 views

How to write a Devise extension (to use a custom datastore)

I'd like to write an extension for Devise that allows you to use parse_resource as the datastore (as opposed to ActiveRecord). parse_resource is a Ruby wrapper for Parse.com's REST api. It's interface ...
6
votes
0answers
1k views

ERROR Errno::ECONNRESET: Connection reset by peer

gem 'rails', '3.0.0' gem 'devise' gem 'bson_ext', '>= 1.0.7' gem 'bson', '>= 1.0.7' gem 'mongo_mapper', :branch => 'rails3', :git => 'http://github.com/jnunemaker/mongomapper.git' gem ...
6
votes
2answers
645 views

MongoMapper docs

Does anyone have a good resource for MongoMapper documentation? I've been reading through the mongoDB docs, but a lot of it doesn't convert across to ruby/mm. I've been trying to figure out how to do ...
5
votes
1answer
137 views

Unset operation failing for MongoMapper model, cannot delete / remove key from model

We're on mongodb 2.0.0, mongo gem 1.4.1, mongo_mapper 0.9.2, rails 3.0.6. We love MongoMapper, but we need helping resolving one nasty issue: we have a key carried over from some testing, but ...
5
votes
6answers
826 views

N+1 problem in mongoid

I'm using Mongoid to work with MongoDB in Rails. What I'm looking for is something like active record include. Currently I failed to find such method in mongoid orm. Anybody know how to solve this ...
5
votes
6answers
4k views

MongoMapper and bson_ext problem

I can't get MongoMapper to work with my Rails app. I get this error message: **Notice: C extension not loaded. This is required for optimum MongoDB Ruby driver performance. You can install the ...
4
votes
1answer
1k views

How to make Rails load a plugin *after* the application code?

I'm trying to write a plugin that defines a MongoMapper model. The problem is that when I run script/console, I get this error: ...
4
votes
1answer
1k views

Return embedded documents in query

Is it possible to perform a query and return the embedded documents? Currently, I have: class Post include MongoMapper::Document many :comments end class Comment include ...
4
votes
1answer
879 views

MongoMapper Parent Inheritance

I am trying to get a better and organized result from using class inheritance with MongoMapper, but having some trouble. class Item include MongoMapper::Document key :name, String end class ...
3
votes
1answer
551 views

advanced searching mongodb using mongomapper, sunspot/solr or sphinx?

I have am using mongodb with mongomapper to store all my products. Each product belongs to multiple categories that have many levels i.e. category, sub category etc. Each product has many search ...
3
votes
3answers
1k views

Upsert Multiple Records with MongoDb

I'm trying to get MongoDB to upsert multiple records with the following query, ultimately using MongoMapper and the Mongo ruby driver. db.foo.update({event_id: { $in: [1,2]}}, {$inc: {visit:1}}, ...
3
votes
2answers
971 views

Including nested objects in JSON response, from MongoMapper objects

class Api::StoresController < ApplicationController respond_to :json def index @stores = Store.all(:include => :products) respond_with @stores end end Returns only stores ...
3
votes
1answer
333 views

Querying associated collection using MongoMapper scopes?

class Comment include MongoMapper::Document scope :by_rating, lambda { |minimum| where(:rating.gte => minimum) } key :rating belongs_to :user end class User include ...
3
votes
3answers
190 views

Where and how to do custom validation on models?

Lets say we have a simple model that stores two integers, the min and the max. We would like to force min <= max. class MinMax include MongoMapper::Document key :min, Integer key :max, ...
3
votes
2answers
874 views

Combine MongoDB and Postgresql in Rails?

Is it possible to combine AR with MongoMapper/MongoID? If so, are there tutorials/documentations for this?
3
votes
1answer
1k views

Rails + MongoMapper + EmbeddedDocument form help

I am working on a pretty simple web application (famous last words) and am working with Rails 2.3.5 + MongoMapper 0.7.2 and using embedded documents. I have two questions to ask: First, are there any ...
3
votes
1answer
738 views

Creating a form for editing embedded documents with MongoMapper

I'm playing around with MongoMapper but I'm having trouble figuring out how to create a form for an object that has embedded documents. With ActiveRecord, I'd use fields_for but when asked if this ...
3
votes
4answers
791 views

searching for a guide how to setup mongo_mapper, devise, haml with rails3

is there a full setup guide for mongo_mapper, haml, rails3 and devise, for the current git (master) branches? a lot of things changed in all of those frameworks/libs lately. i was wondering if ...
3
votes
1answer
502 views

Sharing model definitions between Erlang and Rails (and mongodb)

I have a rails app using mongodb through mongomapper and all is well. The problem is... I'm going to want to use erlang to do some background processing and I want to update the same mongo/mongomapper ...
3
votes
1answer
831 views

Does MongoMapper (or any other Mongodb adapter) have a method like “accepts_nested_attributes_for”?

I'm considering using mongodb on a new project, but before delving in, I'd like to know if it supports some key features. I know you don't need migrations, and you can add embedded objects,...but does ...
3
votes
2answers
2k views

How do i delete an embedded document in mongomapper?

Hi Guys I run a sinatra application with mongomapper. I have models called Movie(Document) and Cover(EmbeddedDocument).I embed covers into movies using @movie.covers << @cover @movie.save ...
2
votes
1answer
51 views

Rails: Use development db for testing

I'm currently developing an application with a really large existing database (> 10 GB, MongoDB with MongoMapper). Now I want to write some tests to ensure that my controllers are working correctly ...
2
votes
1answer
73 views

carrierwave uploader uploads file, but still serves up default_url

I'm using carrierwave in a rails 3 application to upload and store a file from a remote source in my server's file system. I've got a setup that's totally standard, with an uploader mounted on the ...
2
votes
1answer
40 views

querying generation_time on mongo ids

John Nunemaker has a blog post with some nice tips about Mongo ObjectIds -- http://mongotips.com/b/a-few-objectid-tricks/ -- in particular I was interested in the tip about generation_time. He ...
2
votes
3answers
113 views

MongoMapper: finding all documents created on a specified date

I need to write a query that finds all documents created on a specified date. Let's suppose that the date is today. I tried this: Document.all(:created_at => ...
2
votes
0answers
85 views

Padrino + MongoMapper/Joint Troubles

I'm using MongoMapper with Joint on Padrino, and trying to get the upload working. However, I keep getting thrown a NoMethodError "undefined method 'path' for #<Hash:0xa6fbdf0>". It seems ...
2
votes
2answers
107 views

MongoDB: getting ObjectId of last inserted document with multiple, concurrent writers?

Consider the following scenario with MongoDB: Three writers (A,B,C) insert a document into the same collection. A inserts first, followed by B, followed by C. How can we guarantee A retrieves the ...
2
votes
1answer
73 views

MongoMapper + Cascade Deletes?

Does MongoMapper with Identity Map support cascade deletes? It doesn't really seem to, but I could be missing something somewhere in documentation. Consider the following: class User include ...
2
votes
2answers
505 views

How to configure MongoMapper and ActiveRecord in same Ruby Rails Project

I've got an existing production Ruby/Rails app that I want to migrate to MongoDB over time, as time permits, because it's not an option to just rewrite it all at one time. I'd love to be able to just ...
2
votes
1answer
188 views

Moving from SQLite3 to Mongo on Heroku?

I'm currently using SQLite3 with a simple post and image sharing app, similar to the Rails 3 Hartl tutorial (in terms of db structure). But I'd like to move to Mongo for future scalability/learning. ...
2
votes
3answers
144 views

what does an exclamation mark follow with variable mean in ruby on rails?

i was reading tutorials for rails 3 with mongodb and i see something like this # Note this: ids are of class ObjectId. key :user_id, ObjectId timestamps! what does the exclamation mark ...
2
votes
1answer
181 views

Friendship relationship with MongoDB

I'm new to MongoDB, and went with MongoMapper for some associations help. I'm quite curious since, you see, I'm trying to establish some User<->Friend relationships, and I'm a little bit confused ...
2
votes
0answers
116 views

MongoMapper in a custom gem with rspec

Hopefully I'm just missing something simple. I am using mongomapper in a rails 3 app and it works beautifully. I needed to share it with another app and pushed it out to a gem, which also works great ...
2
votes
0answers
259 views

Handling MongoMapper EmbeddedDocument in Rails form

First of all, I'm new to programming in general and new to Rails. I picked up Rails because it seems an easy language to start with. For my project I'm using MongoMapper with Rails. I'm trying to ...
2
votes
1answer
462 views

update_attributes failing to update object in after_save callback (mongomapper+rails3)

I'm having trouble updating a model instance with update_attributes in an after_save callback. Update_attributes returns true, but the attributes aren't getting set in the model instance. The model ...
2
votes
1answer
319 views

MongoMapper custom validation

I have this ruby class with an array of links. As it is now I'm able to save a Paper object even if the array contains links that are not valid urls. I have a method that runs through the array and ...
2
votes
3answers
400 views

Mongomapper: copy a document into a new document

I have a mongomapper document with embedded documents, and want to make a copy of it. In essence, what I am trying to do is something like this: customer = Customer.find(params[:id]) new_customer = ...
2
votes
2answers
209 views

MongoMapper — Float updated via form: how to map “” => nil (instead of 0.0)?

I have a rails3 project, using mongodb + MongoMapper. I have a model with a float value, which the user can set via a form. When the form is submitted, if no value is given for foo_val, the param is ...
2
votes
2answers
206 views

How to make queries with MongoMapper/Ruby?

I started using NoSQL with Ruby. Here's the code I have require 'mongo' require 'mongo_mapper' class User include MongoMapper::Document end MongoMapper.connection = ...
2
votes
3answers
813 views

Rails: Store JSON in MongoDB

I am getting multiple similar JSON object from a remote site and looking to store them in a local MongoDB. What would be the best way to do this ? (Preferably via Mongoid or Mongo-mapper gems) ...
2
votes
2answers
1k views

Ruby Sinatra - connect to mongoDB on mongoHQ failed

This is just for my weekend project/study, I am very new to Sinatra and MongoDB. I've installed the gems for mongoDB, such as: mongo, mongo_mapper and mongoid. When I tried connecting to my database ...
2
votes
1answer
136 views

How to organize my documents?

Howdy guys, I'm pretty new to mongodb (only work with it for one small project) and I wanted to have your tips on how to organize my documents. My brain is not (yet) nosql formatted. I have a ...
2
votes
2answers
741 views

MongoMapper - manually setting an ObjectId failing with “illegal ObjectID format”

I've got a simple model object: class UserRating include MongoMapper::EmbeddedDocument key :idea_id, ObjectId key :rating, Integer end I'm trying to set an Idea_Id on this object with: ...

1 2 3 4 5 6