Class Tweet
field :lD, as: :load_date, type:Time
field :t, as: :text, type:String
end
Tweet.where({:text=>{ $in: ["champ","looser"]},:load_date.gte=>1.month.ago}) #OR
Tweet.where({:text=>{ $all: ["champ","looser"]},:load_date.gte=>1.month.ago}) #AND
in和all都可以应用于Array而不是String类型字段,就像我的情况一样。 因此可以在where子句中使用condition而不是迭代每个元素