0
votes
1answer
32 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
75 views

Mongoid 3.1 Querying Syntax Issue in Ruby 1.9.3

I have a Ruby Association class as follows: class Association include Mongoid::Document field :issued, type: Integer field :lifetime, type: Integer end And I want to delete all of the docs in ...
0
votes
1answer
67 views

Testing for Cursor Not Found Error in mongoid

When I was processing large number of data I ended up in Cursor Not Found Error in Mongoid. And I googled and came across the below link: DBCursor mongodb Now I'm using skip and limit function to ...
5
votes
2answers
230 views

Unable to get a covered query to use index only in mongodb

I am trying to use a covering index to implement stemming text search on my app which uses mongodb. I've got the following index set: ensureIndex({st: 1, n: 1, _id: 1}); But when I run explain() ...
0
votes
1answer
88 views

How to query on related models with rails and mongoid

I have a User model with a related EnrollmentInformation model: class User include Mongoid::Document has_one :enrollment_information end class EnrollmentInformation include Mongoid::Document ...
0
votes
1answer
65 views

How to use nested and or query in Mongoid 3

In former version of Mongoid I would write: Clothes.where("$or" => [{"$and" => [{_type: "Shoes"}, {is_secondhand: false}]}, {"$and"=> [{_type: "Shirts"}, ...
1
vote
1answer
52 views

Using a combination of ANDs and ORs in Mongoid

I'd like to construct a query of the form: select * from some_table where (field1 = 'x' or field2 = 'y') and (field3 = 'z' or field4 = 'w') From reading the docs, I thought it should look ...
0
votes
1answer
115 views

How to search in database by like query in ruby on rails?

i am using rails and mongo db as database simply i want to search I have a field name role Now i send the search item in params[:role] params[:name] Now i have the model User now what could be my ...
0
votes
1answer
183 views

Mongoid query for all documents where array has greater than N elements

I am attempting to query for all documents where the "foo" field has a count of more than zero elements using Mongoid. My query looks something like the following: Bar.where(:'foo.count'.gt => 0, ...
0
votes
1answer
166 views

Rails 3: Mongoid returns #<Mongoid::Contextual::Mongo:ID> tag with array

I've got an array of @contacts that is being iterated on a different model controller view: <%= @contacts.each do |item| %> <p> <%= item.name %> </p> <% end %> Here's ...
0
votes
1answer
92 views

How to perform this pseudo GROUP BY query with Mongo/Mongoid

I have a bunch of collections in my MongoDB database. To illustrate what I'm trying to figure out, here's an example document named "Restaurant": { name: "Foo" categories: [Pizza, Food] visits: ...
0
votes
1answer
70 views

MongoDB geospacial query

I use mongo's "$near" query, it works as expected and saves me a lot of time. Now I need to perform something more complicated. Imagine, we have a collection of "checkins" (let's use foursquare ...
0
votes
1answer
135 views

mongoDB group by/distinct query

model checkin: checkin _id interest_id author_id I've got a collection of checkins (resolved by simple "find" query) I'd like to count the number of checkins for each interest. What makes the ...
0
votes
3answers
83 views

Order users in database, so I don't have to do order_by each time I query

Can I order my users in the database, so I don't have to say order_by("created_at desc") each time I query? Sounds for me like a logical thing to do, but I don't know if it's possible and if it's ...
0
votes
1answer
106 views

Order Mongoid results by dynamic, user-specific value

I have a Mongoid model, and I'd like to order the results by a score that's calculated between the model and current_user in real time. Suppose Thing has an instance method match_score: def ...
0
votes
1answer
78 views

Mongoid query with OR and WHERE

I am building a rails3 web app. Is there a query like this in mongoid db.collection.where((:status => "abc" OR :status2=>"abc") , :license=>"Active") I don't know what fields are present ...
0
votes
2answers
722 views

How to select document with has_many relation with Mongoid

I know that my problem is the trivial one, but I need some help. I have two mongoid classes with has_many relation: class Container ... has_many: items ... end class Item ... ...
0
votes
1answer
283 views

Mongoid: Querying from two collections and sorting by date

I currently have the following controller method in a Rails app: def index @entries = [] @entries << QuickPost.where(:user_id.in => current_user.followees.map(&:ff_id) << ...
0
votes
1answer
245 views

How do I query for a specific MongoDB collection field inside Rails Console?

I have a Rails 3 app using MongoDB, with Mongoid as the ORM. I'd like to query for a specific field within a collection. To query for all records of a particular collection I use User.all.to_a, as an ...
0
votes
1answer
312 views

Mongoid / Rails : Find Questions where User.id does not appear in referenced Answer collection

The title is the problem in a nutshell. Here are the simplified models I am using : class Test include Mongoid::Document field :name, :type => String embeds_many :questions ...
0
votes
1answer
337 views

Query documents based on distinct value in MongoDB?

I'm trying to grab some documents from a MongoDB collection, but there are a lot of very similar entries. Suppose there are 4 documents having {title: "Foo", author: "John"}, but I only want to return ...
0
votes
1answer
90 views

Unable to create a mongoid query with model name in the GET parameter

my query in mongoid model_name = params[:state].classify.constantize @result = model_name.find(:name => params[:name]) the above code doesn't work i get a error wrong constant name California ...
2
votes
1answer
161 views

mongoid include soft deleted document

Mongoid supports soft deletion with include Mongoid::Paranoia Lets suppose i have soft deleted a document from one of the collection. Now I need a query that includes a soft deleted document from ...
0
votes
1answer
183 views

Query for designs with duplicate title in mongoid

I have a design model, which allows designers to upload a design they have made. I would like to query for designs with the same title, uploaded by the same designer and group them together. I can't ...
4
votes
1answer
613 views

In Rails, Using Mongoid, How do I find all Models with a valid (not nil) has_one reference?

So I have a two models like this class ModelParent include Mongoid::Document field :name, :type => String has_one :model_child end class ModelChild include Mongoid::Document field ...
1
vote
1answer
87 views

How to calculate and use latest updated object in Ruby on Rails?

I have Projelements, which are like: Milestone Task ... etc ... Each Projelement can have one or more embedded Comments (thanks to Mongoid). I want to be able to easily say: Give me a list of ...
0
votes
3answers
392 views

mongoid - how to query by embedded object

I have the following model: class User include Mongoid::Document store_in :users field :full_name, :type => String end class Message include Mongoid::Document embeds_one :sender, ...
2
votes
2answers
570 views

Mongoid limit parameter ignored

I tried to grab the latest N records with a unique value (first_name). So far: @users = User.all(:limit => 5, :sort => [:created_at, :desc]).distinct(:first_name) almost works..But ignores ...
2
votes
1answer
924 views

Mongoid query! Combination of limit and order

In my rails app I want to grab the 10 last records with a unique value. I tried: @users = User.all(:limit => 10, :sort => [:created_at, :desc]).map{|t| t.first_name}.uniq but, the limit ...
3
votes
2answers
2k views

How to match mongoid documents using array fields in query?

I am trying to match documents with Mongoid/Mongodb where array fields are used in the query. I've been struggling with $elemMatch but can't seem to get it. Context A Project can have admin, ...
2
votes
1answer
258 views

How to make scope from embedded_in that get only first element?

I have many coordinates embedded in place. How to get only first "start" coordinate for each self Place object? Scope is correct idea? I can select only first, last or all of the places with all(is ...
0
votes
1answer
711 views

Mongoid query by date ranges

How i can write where query by two date ranges? The only condition is that this data must be retrieved by one query. Thank you. UPD: or how to union 2 queries in one collection? not array
1
vote
5answers
2k views

Mongoid random document

Lets say I have a Collection of users. Is there a way of using mongoid to find n random users in the collection where it does not return the same user twice? For now lets say the user collection ...
2
votes
1answer
2k views

Mongo db select where in array of _id?

is possible in mongo db to select collection's documents like in SQL : SELECT * FROM collection WHERE _id IN (1,2,3,4); or if i have a _id array i must select one by one and then recompose the ...
0
votes
1answer
164 views

Complicated mongo query! Active model to mongoid

In my rails 3 app I use mongo and mongoid gem with 3 models: (users, friendship, posts). I need to grab all posts that are from a specific user and his followings. In traditional rails db will be ...
1
vote
2answers
1k views

Case insensitive searching for words in mongoid

Is there a way to set an attribute in mongoid for case insensitive searches? Lets say that somebody has a username: IAmGreat and I want to find the users data using their unique username without ...
1
vote
1answer
396 views

Mongoid search by referenced documents fields

I`m having a problem with search query in Rails 3 application using Mongoid. My models are: class Offer has_many :waypoints end class Waypoint belongs_to :offer field: address field: order, ...
2
votes
1answer
226 views

How to order documents by a dynamic property in Mongoid

I am using Mongoid to store a series of geocoded listings. These listings need to be sorted by price and proximity. The price of every listing is a field in the database whereas distance is a dynamic ...
2
votes
2answers
349 views

MongoDB/MongoID multikey special query

I have two collections: news and subscribes. Every news item has an array of strings - "tags". Every subscribe also has such "tags". Subscribe's news items are items having all tags that subscribe ...
0
votes
1answer
544 views

How can Mongoid embedded_in macro get the parent document?

I'm stuck figuring out a very basic functionality that Mongoid provides; that is, the ability to reference the parent document from an embedded document. If I get it right, of course for embedded ...
4
votes
1answer
1k views

How do I perform this query in both Mongo console and Mongoid?

I'm trying to learn how to query Mongo in more advanced ways. Let's say my data structure is this: { "_id" : "-bcktick-ajman-ae-292932", "asciiname" : "`Ajman", "alternatenames" : [ { ...
2
votes
1answer
2k views

How to make Mongoid order properly?

I've been trying to figure out why Mongoid thinks 387 is smaller than 67. I have two records and the row with 67 is appearing above the row with 387 every time. My query is simple ...
2
votes
0answers
1k views

restrict documents for mapreduce with mongoid

I implemented the pearson product correlation via map / reduce / finalize. The missing part is to restrict the documents (representing users) to be processed via a filter query. For a simple query ...
1
vote
1answer
121 views

How do I update a cumulative field in a Rails database (using ActiveRecord or Mongoid)?

I want to update a field in a database table that has to have a cumulative value. So basically I need to find the current value of the field and update it using a new number. My first inefficient ...