I have a document (DataSet) with many embedded documents (DataPoint) (1:N relation). Since this appears as an array to me in rails, if I want to read every 20th element for example, will it load every element into memory, or only every 20th element?
I am trying to figure out if this will be inefficient. I would like ideally only to load what I need from the DB.
Here is an example:
a = DataSet.first
points = a.data_points.values_at(*(0..a.data_points.count).step(20))
Is this bad? Is there a mongoid specific way to do this?