Mongoid is an Object-Document-Mapper (ODM) for MongoDB written in Ruby.
0
votes
1answer
24 views
How to work with an instance of a model without saving it to mongoid
The users of my Rails app are receiving a lot of emails (lets say they represent signups from new customers of my users). When an email is received a customer should be created, and the email should ...
1
vote
3answers
25 views
How to return a Mongoid::Criteria for A has many B has many C relation?
Relations are:
Account has many Groups
Group has many Users
I need a method in Account to get all users (Users of each group) and then apply an User scope:
account.rb
def users
...
0
votes
0answers
24 views
Delete all children's children when parent node is deleted in mongoid ancestry
I am using mongoid ancestry gem. When i delete parent node all its children are delete properly. But Children’s children are not deleted. Zombie children remain in mongodb, I have included mongoid ...
0
votes
1answer
55 views
Rails cancan user that have many users
I am trying to do a system that have users that have users. So far there is no problem. I create two roles, :employee and :boss, a boss can have many employee, and an employee have to have one boss.
...
0
votes
0answers
37 views
Mongoid - getting mongoid objects from array of hashes
I am trying to implement text search in MongoDB, which I have implemented using the following query (Content is a mongoid model)
output = Content.db.command(:text => "contents",
...
0
votes
1answer
28 views
How to sort by nested field value with Mongoid?
Let's say I have a User with a field name, and which has_many teams, and a Team that belongs_to a user, and belongs_to a sport. A Sport has a field name and has_many teams.
I want to walk through the ...
0
votes
0answers
71 views
rspec + factory_girl + mongoid model: update spec instance.should_receive(:update_attributes).with(hash).and_return(false) failing
From Gemfile:
gem "rails", "= 3.2.12"
group :test do
gem "database_cleaner", "~> 0.7.2"
gem "factory_girl_rails", "~> 4.1.0", require: false
gem "ffaker", "~> ...
1
vote
0answers
24 views
Access belongs_to on a Mongoid::Document subclass
I have a model 'Index' as:
class Index
include Mongoid::Document
belongs_to :project
end
Another model PercentileRankIndex inherits Index
class PercentileRankIndex < Index
def ...
0
votes
0answers
3 views
Sort has_many relationship after a field that is not in the referenced collection?
I'm sorry for the cryptic name of this topic but I didn't really find a better one.
I have a Person model, a Company model and an Employment model which sits between them. It's sort of a has_many ...
3
votes
1answer
94 views
Connecting to two databases Mongoid
I have two databases that I have to use in my application. I have the following in my mongoid.yml:
development:
# Configure available database sessions. (required)
sessions:
# Defines the ...
2
votes
2answers
44 views
rails mongoid follow/unfollow guidance and optimization
i'ved been trying to find an ideal solution for following in mongoid and found this.
HABTM mongoid following/follower
for some reason, Im not sure how optimum is this and this post was way back in ...
0
votes
1answer
85 views
Modify JSON response of embedded object in rails / mongoid
I am trying to modify the JSON in my controller.
I have a projects model that embeds_many images using Mongoid.
Here are the models:
class Project
include Mongoid::Document
field :name, type: ...
1
vote
1answer
48 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
33 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, ...
1
vote
1answer
36 views
Mongoid query retrieving embedded object using '$in' operator
I'm very beginner of mongoid, so I apology for the basic question.
I'm looking for an mongoid statement which throw the mongoDB query like below:
db.mycollection.find({"status.user.name": ...
2
votes
1answer
64 views
Mongoid, calling update_attributes twice to persist change
I have the following models:
class Group
...
has_many :users, dependent: :delete
...
end
class User
belongs_to :group
has_one :invitation, dependent: :destroy, foreign_key: 'to_id'
...
0
votes
0answers
37 views
Mongoid search into a hash
I want to query on a ordered hash field.
Example:
{"0"=>"value_1", "1"=>"value_2"}
I can easily get one or another value by:
Model.where('my_field.0' => 'value_1').first
but, hash can ...
0
votes
0answers
28 views
Getting rid of 'Mongoid config not found' when configuring it programmatically
Good evening,
Have faced a problem with programmatic configuration of Mongoid (v. 2.7.1).
I need to use a custom way of configuring it. Not through mongoid.yml. And if doing so - all works fine ...
0
votes
1answer
27 views
Regex put in via formtastic gets altered (maybe by the controller) before it's put into Mongoid
I have a form where I put in hashes with regular expression values. My problem is that they gets messed up when travelling from my view, through my controller and into MongoDB with Mongoid. How do I ...
0
votes
0answers
6 views
Unable to load sunspot_mogoid
My Rakefile contains:
require 'sunspot_mongoid'
which on a new server is suddenly giving me:
$ LIMITED_ENV="true" QUEUE=* RAILS_ENV=production rake -f /opt/ShopApp/Rakefile resque:work --trace
...
2
votes
0answers
44 views
Using Rapns with Mongoid [closed]
I have a rails application in which I have configured two databases. 1. Postgresql and 2. MongoDb. So I have database.yml for Postgresql and mongoid.yml MongoDb.
I'm using rapns to do push ...
0
votes
2answers
30 views
Create embedded document on object creation in Mongoid
Let's say I have these:
class User
include Mongoid::Document
field :name, type: String
field :email, type: String
embeds_many :auths
attr_protected :name, :email
end
class Auth
include ...
1
vote
2answers
117 views
Full text search using Mongoid
Is there a way to use MongoDB (v 2.4)'s full text search feature via Mongoid? I tried the answer from google group link but kept on getting the following error.
In one tab, I started mongod as such: ...
0
votes
1answer
63 views
how to return mongodb documents directly to client, using Rails and Mongoid
Given documents with datetime and data to be displayed in a graph, how can I return the query results directly without converting from BSON to Ruby and then finally to JSON?
Problem: The time values ...
0
votes
1answer
51 views
Changes in code from Mysql to Mongodb in search and find_by
This is my categories controller
class CategoriesController < ApplicationController
def index
@categories = Category.order(:name).where("name like ?", "%#{params[:term]}%")
render json: ...
0
votes
0answers
51 views
Drawbacks of using both ActiveRecord and Mongoid in Rails app on Heroku
I'm currently using MongoDB exclusively in my app and have no reason to have a SQL DB so far. But I need good gems for:
1. Apple Push Notifications
2. URL shortening
and I'm finding that the most ...
1
vote
1answer
58 views
ActiveSupport::Concern and extending mongoid model
I am using mongoid with rails 3 and have come lately to a very tough
problem and I need an advice.
I am working on a CMS and one of the ideas was that CMS would provide
some basic models definitions ...
1
vote
1answer
38 views
Make item “Private” in rails
App Attributes:
Rails 3.2, Mongoid, Devise, Elasticsearch
Basic Structure:
User has a Post
Post can be seen by other users
Situation:
A User wants to remove the post from being view-able by ...
0
votes
0answers
21 views
undefined method `eager_load' for Mongoid::Relations::Embedded::In:Class
I getting an error using rails with mongoid.
undefined method `eager_load' for Mongoid::Relations::Embedded::In:Class
I have enabled the identity map in the config file
identity_map_enabled: true
...
1
vote
1answer
45 views
Mongoid find not working?
I have Group and User models. User belongs to Group, Group has many Users.
I'm writing an integration test with Rspec: When a Group has at least one User, the Group is not deleted.
Factory:
...
0
votes
0answers
64 views
Raw javascript mongodb queries using db.eval() in java
currently I'm working on a project in JAVA, and I need to run the Javascript Mongo queries through JAVA, and I figured I can do something like that using db.eval() in java. Problem is I have the ...
0
votes
3answers
35 views
include/exclude mongoid attributes
I have a mongoid object:
post = Post.first
When I try:
post.attributes.each do |a|
...
end
this block parse all object attributes.
I need only parse 3 attributes. post.attr1, post.attr2, ...
0
votes
0answers
57 views
Rails - MongoDB replica set issue
I was doing the failover testing of mongodb on my local environment. I have two mongo servers(hostname1, hostname2) and an arbiter.
I have the following configuration in my mongoid.yml file
...
0
votes
1answer
68 views
Rails mongoid has_one queries
In User model there is has_one relation to Professional. In the professional model I have one Array field named industries.
I need to take all values where professional industries in "IT"
I tried ...
0
votes
0answers
51 views
Changing Search Query from Mysql to MongoDB
This is the query for Mysql database
@names = Name.order_by(:name) .where("name like ?", "%#{params[:term]}%")
I want to change it to Mongodb Database query since i am using Mongoid.
I did this
...
1
vote
1answer
35 views
Why do I need reload objects before saving them in order for relations to update?
Not sure if this a Mongoid specific thing or if applies to the greater active record pattern.
I have the following chunk of code, which works:
submission.reload.profile
submission.milestone = ...
0
votes
0answers
22 views
Mongoid version check
I'm running a Rails app with MongoDb and Mongoid. In the docs (http://mongoid.org/en/mongoid/docs/installation.html) they list a configuration option, skip_version_check.
Is there any way to specify ...
0
votes
1answer
46 views
Structure Statistics Data for MongoDB
We have videos who got a certain amount of views every day.
I was thinking doing:
{
video_name: "Blabla"
stats: [
{day: x, views: 342}
{day: x, views: 342}
]
}
However, ...
0
votes
1answer
43 views
Mongoid: How to implement a relationship between embedded documents?
I have a situation where I have a parent document and I want to have two different types of embedded documents: one as a parent, and another as a child with an optional parent. For example:
class ...
1
vote
0answers
41 views
Mongoid error in heroku: Database should be a Mongo::DB, not a nil class
I have a Sinatra app on heroku and it keeps crashing due to this error:
app/vendor/bundle/ruby/1.9.1/gems/mongoid-1.2.14/lib/mongoid/config.rb:52 in 'master': Database should be a Mongo::DB, not a ...
0
votes
1answer
36 views
remove resource name and get 404 response with mongoid_slug gem
namespace :blog do
resources :posts, :only => [:index, :show], :path => "/"
end
If I write:
http://localhost:3000/blog/post1
and it's working fine. However if I write:
...
0
votes
4answers
82 views
How to generate optgroup in rails with Mongoid?
What is the best way to group options when using MongoDB?
I am using Mongoid, when I tried this approach:
<%= field.select :resource_id,
...
1
vote
0answers
71 views
MongoDB Aggregation: Compute Running Totals from sum of previous rows
Sample Documents:
{
_id: ObjectId('4f442120eb03305789000000'),
time: ISODate("2013-10-10T20:55:36Z"),
value:1
},
{
_id: ObjectId('4f442120eb03305789000001'),
time: ...
0
votes
1answer
62 views
Mongoid: Order by field and skip N records
I have a collection with the following data:
{
"_id" : ObjectId("516b969beceaed363a000027"),
"user" : "276",
"item" : "796",
"rating" : 1,
}
I want to order by user and then within each ...
11
votes
1answer
125 views
Storing Time Stamp as Number Mongoid
I'm new to Mongoid. In my model file, I've created a field with data type BigDecimal. I want to store time stamp in it. Below is the model that I'm using:
class Test
include Mongoid::Document
...
0
votes
1answer
38 views
Mongoid - Get all integer values
I have the following mongoid Model
class MyModel
include Mongoid::Document
field :myField
end
The value stored against myField can be of any datatype. I need to filter out, how many times an ...
0
votes
1answer
25 views
How do I autocreate associated records in MongoDB using Mongoid?
I'm still getting my head around MongoDB and Mongoid in particlar.
Let's say I have a User and each User has one Thingamajig. When I create the User
I want the system to autmatically also create a ...
1
vote
1answer
58 views
How to protect a user password with bcrypt and mongoid
I've just started out using MongoDB and, in particular, Mongoid.
naturally I'd like to ensure my User's passwords are kept nice and secure, and previously I'd have done this with ActiveRecord and ...
0
votes
0answers
60 views
Rails + Mongoid - Rails Console - unexpected form of a result
I am using ElasticSearch, MongoDB.
I have a large model User.rb:
class User
include Document
include Mongoid::Random
include Tire::Model::Search
include Tire::Model::Callbacks
include ...
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 ...



