Let me start with my use case. I have two different instance of mongoid database hosted per region based with similar model. And depending on user input, the code gets the results from respective mongo instance in my rails app. I am not sure what is the best way of doing this however I used Model.with approach and configured two clients in mongoid.yml.
With mongoid <5.0, this worked perfect. However, recently I am upgrading to mongoid 6.2 with which Model.with now accepts block and my query is not producing any results.
Heres example code.
I changed my code from below (mongoid <5 which worked fine)
results = SomeModel.with(client: "region1").where(name: 'John')
to (mongoid >= 6.2)
results = SomeModel.with(client: "region1") do |mymodel|
mymodel.where(name: 'John')
end
With new code the results are empty. Not sure if I am doing anything wrong. However, below code works fine if want just one record:
results = SomeModel.with(client: "region1") do |mymodel|
mymodel.where(name: 'John').first
end
I would really appreciate if there is any other idea for my use case.
I have only used Mongoid 6, and just recently, but maybe this will help. Though, it has nothing to do with the multiple clients case.
Well,
#first
is actually saying, from that criteria{name: 'john'}
give me the first occurrence.Isn't that when you call a
#where
, you are only declaring the criteria parameters, but the actual query isn't executed until you ask for the actual data?I'm not 100% sure but.
Now, if you want the collection of data and not the criteria itself, you may want to call a method over that object, like
#to_a
,#to_json
,#first
,#last
, iterate them with#each
, or even use an operator like[0]
. That will bring you the data that corresponds to the Criteria you declared earlier.That's what i think, because when i throw a
#where
in a controller's method from my rails apps, and the result is rendered as JSON, a call to#as_json
is implicit.Maybe try to call a
#to_a
and get the full array of objects to return.