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

learn more… | top users | synonyms

0
votes
1answer
30 views

Slow Mongo queries from Rails app taking > 1000 ms … ideas for optimization?

We built a Rails app on Mongo 2.2 and Rails 3.2.12. We're new to Mongo and would appreciate any tips on how we should optimize very slow queries, ones that take longer than 1000 ms. We're using ...
0
votes
0answers
13 views

Mongomapper querying on 'belongs_to' model

I have two models: class Post include MongoMapper::Document many :comments key :content, String end and class Comment include MongoMapper::Document belongs_to :post key :post_id, ...
0
votes
2answers
27 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
0answers
43 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
20 views

How to do build this mongoDB query (mongomapper)

I have certain documents with a name: String and a version: Integer. What I need is a list of the highest version per name. So I think I need to do the equivalent of group by in sql and then a ...
1
vote
0answers
36 views

Sidekiq workers use too many mongo connections

I'm running Sidekiq under MRI 1.9.3, and using MongoMapper as my ORM. My Sidekiq workers are frequently dying with the following exception: Mongo::ConnectionTimeoutError: could not obtain ...
0
votes
0answers
20 views

How do you call “contains?” on a MongoMapper Array in Rails 3?

I want to know how to check if an array element exists inside of a MongoMapper Array. This question is the closest I could find, but it addresses queries rather than simply using a document you ...
2
votes
1answer
110 views

How to troubleshoot slow performance on URL with Rails + Mongo

We could use advice on a scaling/ops issue. We have a simple mobile app that runs on Rails 3.2.12 and uses MongoMapper instead of ActiveRecord. There is one database call that sporadically performs ...
2
votes
1answer
61 views

Confusion about ways to use JSON in ruby sinatra application

I'm making a Ruby Sinatra application that uses mongomapper and most of my responses will be in the JSON form. Confusion Now I've come across a number of different things that have to do with JSON. ...
1
vote
1answer
15 views

MongoMapper getting data from a query

I'm trying to return a User with MongoMapper: Here's the user 1.9.3-p194 :004 > User.where(:email => 'redacted@gmail.com').all.count => 1 1.9.3-p194 :005 > User.where(:email => ...
0
votes
0answers
13 views

Instrumentation tools or otherwise measure performance for MongoMapper?

New Relic doesn't allow for instrumentation of MongoMapper. We're on Rails 3.2.12. What are people using to instrument MongoMapper? Any advice on how to troubleshoot why a URL sometimes shows very ...
0
votes
0answers
15 views

Using AOP on mongomapper models: weird behaviour

I'm creating an application that uses mongomapper to map my modelclasses to the database. I'm using AOP (the 'aquarium' gem) to log all the changes made on the database (mongodb). I wanted to put ...
0
votes
1answer
20 views

MongoMapper with Padrino Forms Select

I am using mongomapper inorder to associate 2 models together in a one-to-many relationship. I want to show the ids of one model into the other models in the padrino admin section. I am trying to ...
0
votes
1answer
36 views

Count total documents in collection using map reduce?

I have "statistic" collection like that: { "_id" : ObjectId("4d2407265ff08824e3000001"), "request_uri" : {"netloc":"localhost/8080", "path":"vi/sitelicense"}, "api_key" : "apikey", "request_method" : ...
0
votes
1answer
20 views

Sort by Joined Documented property

I have a collection of Scorecards (where a user has scored a match) I would like to sort their scorecards by the date the match was on (Which is stored in the match property) The Scorecard and the ...
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 ...
0
votes
1answer
37 views

Mongomapper :minimum & :maximum vs. :length

I try to validate in MongoMapper a string with: key :title, String, :require => true, :length => 4..30 And I got always the error "title is too short (minimum is 4 characters)" also ...
0
votes
0answers
17 views

Got undefined method 'exist?' when using embedded document

Two rails models defined below: class SubCategory include MongoMapper::EmbeddedDocument @number_limit = Array (0..15) key :name, String, :required => true, :unique => true key ...
0
votes
0answers
22 views

Using mongomapper and ruby on rails errors with ActiveSupport::TimeWithZone is not currently supported

When using a mongomapper document with a date class Doc include MongoMapper::Document key :a_time, Time end Then setting the date as a string or time :a_time => "2013-03-07T22:39:26.466Z" ...
0
votes
1answer
19 views

A function returning the string of

I'm getting setup in mongodb, was looking into using the greater than hash parameter and I get an error. However, when I use a hashrocket it works. Why is this? require 'rubygems' require 'mongo' ...
0
votes
1answer
57 views

Why am I getting NoMethodError with my rails app on AppFog?

I have a rails app on AppFog, connected to a mongo database. It is a very simple database, where I used the mongo_mapper gem to create MVC stuff, and then didn't modify it. rails g scaffold Contacts ...
0
votes
1answer
75 views

Mongomapper query for specific field of a many-to-many associated object

I have a mongomapper model like this: class ChildTemplate include MongoMapper::Document plugin MongoMapper::Plugins::IdentityMap key :name, String, :required => true, :unique ...
0
votes
1answer
35 views

Using Mongo: should we create an index tailored to each type of high-volume query?

We have two types of high-volume queries. One looks for docs involving 5 attributes: a date (lte), a value stored in an array, a value stored in a second array, one integer (gte), and one float (gte). ...
0
votes
1answer
44 views

Data model built on Mongo: store IDs as one massive string or array of strings? Is Mongo faster at using regular expressions or looking inside arrays?

We could use help on structuring our Mongo database. We need to store country IDs then run queries to return documents containing matching countries. Assume the IDs are strings 6-10 chars long. Two ...
1
vote
1answer
42 views

Saving date/time using mongomapper

Im trying to save date time information to the following field in mongo key :last_comment_time_cache, DateTime update_attributes!({:last_comment_time_cache => Time.now}) The data that is being ...
0
votes
0answers
52 views

NoMethodError: undefined method `quote_table_name' for #<Mongo::Connection:0x007fe1677baea8>

I see the following errors after upgrading my rails to 3.2.12 from 2.3.5 and running rake tests NoMethodError: undefined method `quote_table_name' for My ruby version is 1.9.2 . mongo is ...
0
votes
0answers
30 views

How to use materialized paths to find documents in Mongo with MongoMapper?

We want to search for documents using materialized paths against Mongo using MongoMapper. How can we do this? Do we pass in the regular expression like :path => /path_we_want/? We're on ...
0
votes
1answer
44 views

How to rename a database using MongoMapper in ruby?

I am trying to rename a database using MongoMapper in ruby. Is it possible to do the same? any alternative hack to accomplish the same?
0
votes
2answers
155 views

How to get raw Mongo data results from a MongoMapper Plucky::Query object?

Let's say we have a MongoDB collection called "images", and a MongoMapper-powered application with a corresponding "Image" model. If we set up a MongoMapper query using this model, we see that it is ...
0
votes
0answers
27 views

Return from MongoDB-based Model: How do I transform?

I am very new to Ruby, Rails and MongoDB so I have the following question: I have a Controller where I call my Model Business: Business.all Everything is okay, it works, I've got the data in my view ...
0
votes
0answers
35 views

Many-to-one associations in MongoMapper

Is there a way to use the associations plugin in MongoMapper to create a many-to-one association between classes? Here is my attempt. class Foo include MongoMapper::Document end class Bar ...
0
votes
1answer
74 views

“Mongod” works, but running “rails console” results in “Failed to connect to a master node at 127.0.0.1:9100 (Mongo::ConnectionFailure)”

I have a problem with MongoDB. For a start, when running mongod, and then mongo (in another teminal window), I get: MongoDB shell version: 2.2.2 connecting to: test > > However. When I ...
0
votes
1answer
28 views

Find the list of list of indexed keys in mongomapper

I am working on a rails app with mongodb and mongomapper. I would like to index few keys in the database. This is first project for me on mongo. The keys i want to index i can specify like this ...
1
vote
1answer
112 views

How to rename a column in a collection in Mongodb using MongoMapper?

Mongodb gives an option for renaming a column name as follows db.collection.update({},{'$rename'=> {'old_name' => 'new_name'}}, false,true) Is it possible for using MongoMapper to do the ...
0
votes
1answer
52 views

Tests won't work with MongoMapper in Sinatra

I hooked up MongoMapper with Sinatra and everything works fine except for the testing. I have Autotest with Rack Testing and Rspec installed. Whenever I run autotest, it tells me ...
0
votes
1answer
34 views

What's Returned on find in Mongo Mapper?

I am doing a search in a collection for a document based on its id. What is returned if find(the_id) can not be found? session[:remote_ip] = request.env['REMOTE_ADDR'].split(',').first user = ...
1
vote
1answer
61 views

Is MongoMapper 0.11 compatible with MongoDB 2.2.2? Suggest other Rails libraries for MongoDB?

MongoMapper has not been updated since Jan 25, 2012 according to its website. MongoDB released 2.2.2 on Nov 27, 2012. Does anyone know if MongoMapper is compatible with the newest release of ...
2
votes
2answers
98 views

Is it possible to default all MongoDB writes to safe? What is the performance hit from doing this?

For MongoDB 2.2.2, is it possible to default all writes to safe, or do you have to include the right flags for each write operation individually? If you use safe writes, what is the performance hit? ...
1
vote
1answer
61 views

Rails Unit Test Mystery: Method Runs, Value is Changed, Assertion Fails

I have a unit test that checks that a method does the following: Finds all instances of a model with a certain value, changes them to another value, saves the models to the database. The method ...
0
votes
1answer
106 views

Mongomapper sorting

I am getting confused with mongomapper + sorting. I have a test blog with data with posts like this: http://www.mongodb.org/display/DOCS/Schema+Design Now, I would like to show just comments sorted ...
2
votes
2answers
62 views

How to return popped element in mongodb

I would like to pop one item from the array, and get that element. Is it possible in mongodb? I didn't find such information at http://docs.mongodb.org/manual/reference/operator/pop/
3
votes
2answers
316 views

reloading tire/elasticsearch mappings for a model that already has data stored

I am using Tire and elasticsearch to provide search functionality on a MongoMapper model, which is part of a Rails App. I just stumbled across a problem where the mappings for this model were not ...
0
votes
0answers
33 views

Strange behaviour of push_uniq in MongoMapper

In Ruby, using MongoMapper, I made the following test: test = (push_uniq @a.id, title: 'test') puts test.class puts test.to_s As a result I got: Fixnum 136 Why 136 ? Anyone?
0
votes
0answers
20 views

Analogue of ActiveRecord::Relation#reverse_order for Mongoid and MongoMapper

I am writing a gem that supports 3 ORMs as backend: ActiveRecord Mongoid MongoMapper There is a method #reverse_order available in ActiveRecord: it reverses sort order already stored in the ...
0
votes
1answer
246 views

ember-data dynamic number of DS.attr 's

So i have a ember-data model and i want my users to be able to create different / more DS.attr per item and call them whatever they like. This will then send the json to rails server where i am ...
1
vote
1answer
75 views

Override mongomapper has_many association

I use Rails 3 with MongoMapper. I want to add some records to the result of has many association. For example, user has_many posts class User include MongoMapper::Document many :posts end By ...
1
vote
1answer
142 views

Mongomapper - embedded document or one-to-many or …?

There is an user model and an account model. An user can have many accounts. Approximately an user has 5 accounts. What kind of associations should I use in this case: EmbeddedDocument or ...
0
votes
0answers
111 views

MongoMapper and Embedded Documents as Nested Resources and default route helpers

I'm using Rails 3.2.8, MongoMapper and Simple Form (same behavior as the stock form_for). I'm finding the stock form helper for the show route of an embedded document / nested resource does not ...
1
vote
0answers
56 views

Named scopes for Embedded Document type in MongoMapper?

I'm using Rails 3.2.8 with the latest MongoMapper, and I've switched a top level model from being a MongoMapper::Document to being a MongoMapper::EmbeddedDocument. Suddenly I got an error on the ...
0
votes
1answer
197 views

Using Namespace nested resources with MongoMapper EmbeddedDocument with form_for

I'm submitting a form that is sending in a child resource's id value for both the child resource and it's parent resource's id. I don't know how to get the form submission to stop duplicating the ...

1 2 3 4 5 9