我正在使用最新版本的mongo驱动程序,我正在尝试查询。
这曾经有用,但由于某些原因现在没有,我在驱动程序中查找了$ in的示例,但找不到任何内容。
Mongo::Logger.logger.level = ::Logger::FATAL
client = Mongo::Client.new([configatron.dbserver],
:database => configatron.dbname
)
@collection = client[collection_name]
@collection.find(
:$and => [
{:ShareIndex => {:$in => share_indexes}},
{:Latest => true}]
)
我得到的确切错误:
undefined method `bson_type' for #<Mongo::Collection::View:0x007ff9b2827130>
答案 0 :(得分:1)
mongodb中没有$a
运算符
@collection.find({ :ShareIndex => { :$in => share_indexes }, :Latest => true })