Mongoid is an Object-Document-Mapper (ODM) for MongoDB written in Ruby.
0
votes
1answer
45 views
Delayed Job object not properly deserialized
I'm having a hard time believing what I'm seeing, but it sure looks like DJ is failing to deserialize an object properly. I look at the DJ record in mongo and I see in the YAML that the object has ...
0
votes
1answer
37 views
Mongoid + Devise Daily Signups
I have been using Mongoid in my latest project along with Devise. So far it is great.
I would like to count the number of user signups per day grouped by created_at date.
I know that in mongoDB it ...
1
vote
1answer
62 views
Execute method on mongoid scope chain
I need to take some random documents using Rails and MongoId. Since I plan to have very large collections I decided to put a 'random' field in each document and to select documents using that field. I ...
0
votes
1answer
74 views
Rails + Mongoid + Devise : Add a birthday field to the register form
I'm using Rails 3.2.11, mongoid 3.1.2 and devise 2.2.3 and I have an User model with a birtday Date field.
class User
include Mongoid::Document
field :birthday, type: Date
field :email, ...
2
votes
1answer
58 views
Mongoid observers not firing at all (rails 3.2.13, mongoid 3.1.3)
I think I followed the description of how to make observers exactly, Model page:
class Page
include Mongoid::Document
field :title, type: String
field :content, type: String
end
I have an ...
1
vote
1answer
49 views
Mongoid: How to inverse a 1-N relationship, and store foreign key on parent?
I'm creating a Profile that describes a person. Included in this description is information about what Industry they work in (i.e. "Computers & IT"). So the relation is defined such that:
"A ...
1
vote
1answer
16 views
How to order_by a field in a model that belongs to another model in mongoid?
So I have these models:
class b
:field boolean, :type => Boolean
end
class c
embeds_many :a
end
class a
belongs_to :b
scope :sort_by_boolean, order_by(:b.boolean => :asc)
end
I ...
0
votes
1answer
38 views
Mongoid Unique Constraint on Composite Key
I'm trying to follow the advice in Mongoid 3 - Check for uniqueness of composite key to have a model with a unique constraint on 2 fields.
The id declaration is this:
field :_id, type: String, ...
2
votes
2answers
119 views
FactoryGirl creating objects in development environment
When I boot up my rails console in development I see FactoryGirl creating objects. Clearly I'm doing it wrong, but what's the right way to do this? This code makes my tests work...
# ...
0
votes
1answer
86 views
activeadmin-mongoid: How to filter on id?
This doesn't work:
filter :name, :as => :string
Because mongoid ids are not strings, you can't filter on the ids as a string. Is there a nice way to filter on the ids by creating a custom ...
1
vote
0answers
34 views
Is there a better way to do it? ( Mongoid + TaggableWithContext )
is a few days I'm trying to learn how to use MongoID and I found myself faced with a problem:
there is a better way to do this?
Group.find_by(name: params[:group]).subgroups.tags.each do |l|
...
1
vote
0answers
80 views
Update attributes of embedded new record in Rails & Mongoid
I'm trying to write a piece of functionality that creates a record from a template in my Rails app, but with some customisations from the user.
The difficulty comes when trying to let the user ...
1
vote
1answer
64 views
mongoid .limit does not work in mongoid 3.1.x
i tried something like this in rails with mongoid 3.1.0 and lastest 3.1.3.
.limit does not work. below it should return 1 row but it returns all (4)
code:
@go = Gallery.limit(1)
logger.info "count: ...
2
votes
0answers
93 views
Rails blog using Mongoid - Auto generate Short URL on post creation
I have a simple blog engine using Rails and Mongoid ORM.
I have 2 models in the blog, 'Article' and 'Url'.
The Article model contains all of the post content, and the Url class is the generator ...
0
votes
1answer
50 views
How to resolve “geo field only has 1 element” error
I have a geocoded collection that throws an error when I try to query for the number of documents that are geocoded. Here is my query;
Account.exists("locations.coordinates" => false).count
...
0
votes
0answers
87 views
Unicorn has undefined method error ONLY in production
My app is working great in development mode AND production using WEBrick.
But in Unicorn, it only works in development mode. As soon as I try to edit or update a category I get a no method error. Any ...
0
votes
1answer
96 views
Ruby on Rails + MongoDB and MongoID
I have created a sample DB with MongoDB with data from a JSON file on mongodbs website
I have imported it with the following command.
mongoimport --db test --collection zips --file zips.json
The data ...
1
vote
1answer
68 views
Iterating over a collection in MongoDB for updates
I'm iterating over a collection (running Moped as Ruby driver) but how to update one field for every document?
irb> session = Moped::Session.new(["127.0.0.1:27017"])
irb> session.use :demoapp
...
1
vote
1answer
38 views
What happens if I have a pool_size of 1 in mongoid2 and i'm running unicorn with 3 worker_processes?
I'm running into a connection timeout happening. In my scenario of pool_size 1, does it mean that the most connection that are in the pool are 1 (ie. does pool_size = max_pool_size)??
Also, what ...
0
votes
1answer
21 views
Exception with route generation for a cloned/duped object
I have a following object
class BaseProject
include Mongoid::Document
end
Now let's say I want to create a copy of it via dup/clone
p1 = Project.first
p2 = p1.clone #p1.dup has the same effect
...
0
votes
1answer
28 views
get last record in monodb using ruby
I use Ruby on rails, mongoid for my application.I want to get last record in a collection. I try
Person.find().sort({'_id',-1})
but, this command does not work on ruby. How can I achieve to get the ...
0
votes
1answer
48 views
Mongoid embedded document returning empty for queries
When I query the embedded model, no records are returned despite there being plenty of parent records containing instances of the embedded model.
There are two models, a Label embedded in a Band:
...
0
votes
1answer
28 views
Mongoid, after_create hook cannot modify self
The below after create hook does not successfully set the gdoc key. We have to use self.write_attribute instead. Am I trying to do something stupid?
class GoogleDoc
field :gdoc_key, type: String
...
0
votes
1answer
21 views
form_for signature for Mongoid::Document subclass
I have a Mongoid document as :
class Index
include Mongoid::Document
end
And two subclasses for 'Index' as:
class PercentileRankIndex < Index
end
class SocialStockIndex < Index
end
...
0
votes
1answer
49 views
Arranging Ancestry siblings by name and integer
I have a model called Category, I can find the siblings of my current category by calling @category.parent.siblings or Category.siblings_of(params[:id]) but as soon as I try to sort either of those ...
0
votes
1answer
28 views
“Proxy” Capture of $stderr and $stdout for DB Storage
I am trying to store the stderr and stdout in our database for the future debugging purpose of our background processes. I want also the capture to be transparent like a proxy, by that I mean that I ...
1
vote
1answer
120 views
Destroy an embedded Mongoid document by specifying its “id” (instead of finding it through its parent)
I have these two models:
class Presentation
include Mongoid::Document
embeds_many :presentation_rows
end
class PresentationRow
include Mongoid::Document
embedded_in :presentation
end
In my ...
3
votes
1answer
115 views
New Relic causing uninitialized constant Mongoid::Collection (NameError)
After moving my Heroku app to Unicorn, New Relic stopped showing any reports except for deployments. I tried the solution suggested here: https://newrelic.com/docs/ruby/no-data-with-unicorn with no ...
0
votes
0answers
83 views
Ruby on Rails, Why I can't save and find elements on Mongoid?
I'm using Ruby on Rails, Mongoid and RSpec
I have a model called EvaluationMessage.
class EvaluationMessage
include Mongoid::Document
field :question_sn, type: Integer
field ...
5
votes
1answer
108 views
What is the correct way of maintaining indices for Sunspot Solr?
I am confused about the Solr indexing mechanism. Perhaps someone can shed some light on it.
So, we have 2 rake commands: rake sunspot:solr:index and rake sunspot:solr:reindex
Here's what my index ...
1
vote
2answers
186 views
Rails Update Action fails with rails4, mongoid. Create ok
I have a dead simple rails application w/ rails4 and mongoid. I can create new datasets like a charm. But I just can't update existing datasets.
Anyone has this issue? How does this work, what am I ...
0
votes
2answers
24 views
How to do genders in mongoid and simpleform?
I have the following models:
class User
include Mongoid::Document
has_one :gender
class Gender
include Mongoid::Document
has_and_belongs_to_many :users
Gender table is seeded with genders.
...
0
votes
1answer
24 views
Mongoid - How to create a document with embedded documents?
I am currently working on a Rails project using Mongoid. I have a Game model defined, which embeds many GamePlayers. Unfortunately, I can't figure out how to create new games. I can create a game with ...
0
votes
0answers
53 views
Need mongoid queries to grab aggregated data from logs collection
I have a mongodb collection used for storing log files with the following schema...
{
_id: ObjectId('4f442120eb03305789000000'),
remote_addr: "127.0.0.1",
account_id: 123,
user: 'frank',
...
1
vote
1answer
61 views
PHP Copy a document in MongoDB, replacing it's MongoID
When changing a certain document where (it's unsure how exactly the structure is), I want to create a backup of this document in another collection before saving it back to my current collection. To ...
0
votes
0answers
67 views
Mongoid embedded document to automatically save (trigger callbacks on) parent
If I have the following classes:
class Bar
include Mongoid::Document
embeds_many :foos, :cascade_callbacks => true
end
class Foo
include Mongoid::Document
embedded_in :bar, :inverse_of ...
8
votes
3answers
121 views
How to migrate from belongs_to, to embedded_in in Mongoid?
If one first build their models with a belong_to and has_many association and then realized they need to move to a embedded_in and embeds_many association, how would one do this without invalidating ...
0
votes
1answer
38 views
Define type of inheritance in a form
I like to define the type (:_type) of an mongoid object with inheritence straight from a form.
Defining the type of and object is quite simpel:
shapes.build({ x: 0, y: 0 }, Circle)
But now I was ...
1
vote
1answer
48 views
Rails 3.2.12 and mongoid 3.0.17, observers can't be initialized,
I was trying to create a observer to do something when a product is created of update.
The product model is under the namespace "ecommerce", and the path is "app/models/ecommerce/product.rb"
class ...
0
votes
2answers
42 views
Query grouped by two swap fields
I have collection messages with the following documents
{
"_id" : ObjectId("5164218f359f109fd4000012"),
"receiver_id" : ObjectId("5164211e359f109fd4000004"),
"sender_id" : ...
0
votes
1answer
36 views
no such mongoid configuration file issue
I have a minitest_helper.rb and mongoid.yml files in a directory. I putted the below code in minitest_helper;
require 'mongoid'
Mongoid.load!("mongoid.yml", :test)
Although these files in a same ...
0
votes
0answers
31 views
testing inheritance between classes
I develop an application using Ruby on Rails, and I make tests. Belows are my model classes. How can I test whether Season inherits from Period using mini_test?
require 'mongoid'
require_relative ...
0
votes
1answer
20 views
Keep Child Objects sorted in a field_for
I have this kind of code:
user.posts.size #=> 5 already saved
user.posts.new(title:"foo")
user.posts.new(title:"bar")
user.posts.sort_by! { |e| e.title } #=> sort correclty
user.posts #=> ...
2
votes
2answers
91 views
What's the ideal way to model this with Mongoid? An issue with multiple models
I am noticing a relation problem that I may have created.
I started off with a Photo model. An admin could upload photos and they would exist on the site.
In a later iteration Albums were added into ...
0
votes
1answer
55 views
Mongoid: search in has_many relation
I'm using mongoid, and have the following code:
class Users::User
include Mongoid::Document
field :username, type: String
has_many :emails, class_name: "Users::Email"
end
class Users::Email
...
0
votes
0answers
23 views
Mongoid assigning empty string key - `Attempted to set a value for ''`
We're getting this error message on updating a Mongoid::Document:
Problem:
Attempted to set a value for '' which is not allowed on the model Article.
The PUT update parameters are fine, but the ...
1
vote
1answer
79 views
moped errors on production environment
This is my mongoid.yml
development:
sessions:
default:
database: myapp
# Provides the hosts the default session can connect to. Must be an array
# of host:port pairs. ...
3
votes
1answer
109 views
How to execute runCommand with Mongoid?
I have text index in MongoDB and want to use text command for searching in my collection. Can't find this functionality in Mongoid.
1
vote
2answers
89 views
protect mongodb ports with iptables
This is my iptables config:
sudo iptables -L -v
Chain INPUT (policy ACCEPT 0 packets, 0 bytes)
pkts bytes target prot opt in out source destination
0 0 ...
0
votes
0answers
15 views
How to have versioning of uploads with mongoid & carrierwave
I have this DocUploader that's mounted to the Job class like this
class Job
include Mongoid::Document
field :due_at, type: DateTime
mount_uploader :doc, DocUploader
end
class DocUploader ...


