Tagged Questions
0
votes
0answers
22 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
14 views
Why isn't validations working with `embeds_one`?
Why isn't validations working with embeds_one?
class Foo
include Mongoid::Document
embeds_one :bar, :cascade_callbacks => true
end
class Bar
include Mongoid::Document
embedded_in :foo
...
0
votes
0answers
18 views
How to validate uniqueness with scope?
I've got:
class Foo
include Mongoid::Document
field :year, :type => Integer, :default => Time.now.utc.year
field :month, :type => Integer, :default => Time.now.utc.month
field ...
0
votes
1answer
35 views
MongoDB Many to Many with extra attribute
Since I'm new to MongoDB, I've got a lot of questions regarding schema design. I'd like to transform my relational schema to a MongoDB-Schema for learning reasons and want to profit from the schema as ...
0
votes
1answer
20 views
change order of specific mongo records
in mongodb records are like this
{ "_id" : ObjectId("5191fc1206610430cd000004"), "ancestry" : null, "name" : "root" }
{ "_id" : ObjectId("5191fc1306610430cd000005"), "ancestry" : null, "name" : ...
0
votes
1answer
31 views
How do I aggregate two nested documents?
Since Video has embeds_many dates, and dates has embeds_many countries. Using the aggregation framework, how would I get the total of all likes_count?
I got the following structure:
{ "_id" : ...
1
vote
0answers
24 views
Intersecting Mongoid “in”-Queries
According to the mongoid documentation on Explicit Merging ("Queryable#in - defaults to intersect") I would expect the following query:
Contact.in(id: ['a', 'b']).in(id: ['b', 'c'])
to result in ...
0
votes
1answer
35 views
Nested Querying in Mongoid in 2013
So this question is two years old:
Querying embedded objects in Mongoid/rails 3 ("Lower than", Min operators and sorting)
and the way it recommends to query nested objects with less than ...
0
votes
2answers
37 views
Extract Mongoid documents based on the DateTime of their last has_many relations?
I have a bunch of orders, and some of them have order_confirmations.
1: I wish to extract a list of orders based on the DateTime of its last order_confirmation. This is my failed attempt (returns 0 ...
0
votes
2answers
39 views
How to create relations among models for a rails app with devise and mongoid?
I'm trying to create a simple to-do list app here..
Is there any tutorial which can guide me to create relations among models?
and what changes are nedded for the task controller..
Ruby - 1.9.3-p385
...
0
votes
1answer
28 views
Rails/Mongoid: Can an embedded (embedded_in) document have many documents (has_many)?
I have a user who embeds many email_accounts. At the same time I wish that the email_accounts can have many email_templates. Is this possible? My Rails app refuses to accept the relations when I try ...
0
votes
1answer
21 views
How can I filter results of map-reduce in Mongoid
Is there a way to filter the results of map-reduce operation in Mongoid? I found a 'query' function that can be executed on the MongoDB but there doesn't seem to be a mapping in Mongoid.
I'd like to ...
1
vote
1answer
71 views
How to extract Mongoid documents based on a field value in the first or last embedded document?
I wish to find Order documents based on a field in the last embedded Notificationdocument.
In the example below I wish to find all pending orders that has one or more embedded notifications, and ...
0
votes
0answers
17 views
Moingoid - retrieving all embedded documents from parents with the same name
I am relatively new to Mongo and using it in my first project. As the requirements of the project have changed, I'm trying to determine if Mongo is still a good fit given some of the new things I'm ...
0
votes
1answer
35 views
Should dates be an embedded document?
I am using Mongoid 3. I have a Video model. Should dates be an embedded document or an Array type?
If I have this structure:
{
:id => 2,
:dates => [
{
:date ...
0
votes
0answers
21 views
Mongoid undefined method `field' for []:Array error
Here's my model:
class Model
include Mongoid::Document
field :field_1, type: Integer
field :field_2, type: Integer
field :field_3, type: Integer
field :field_4, type: Integer
def ...
0
votes
0answers
14 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
0answers
22 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
55 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
35 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
23 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
30 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
42 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
2answers
26 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
60 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
49 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
44 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
36 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
0answers
41 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
0answers
45 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
...
0
votes
0answers
18 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
41 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
4answers
76 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
55 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
50 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 ...
0
votes
0answers
37 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
33 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
34 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
14 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
26 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, ...
1
vote
0answers
30 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
1answer
50 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
70 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
72 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
51 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
34 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
26 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
35 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
0answers
42 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
50 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 ...


