zoukankan      html  css  js  c++  java
  • 解决 mongodb $in needs an array 问题

    问题现象:

      在mongodb执行批量查询操作时,抛出异常 Exception 2: $in needs an array。

    问题解决:

      感谢伟大的 google 和 stackoverflow 有人遇到过该问题,问题的原因解释得很清楚,偷个懒,直接 copy 过来,如下:

    This... is a change in MongoDB 2.6.0, no longer accepting bson object in the $in clause.
    
    This particular issue is being tracker as a PHP driver bug at https://jira.mongodb.org/browse/PHP-1051
    
    The MongoDB PHP Driver will serialize an PHP Array into BSON Array (accepted by the $in operator) when the PHP array is: Sequential numerically indexed, starting from 0
    
    This means that if you have an array like:
    
    $array = array($id0, $id1, $id2, $id3, $id4);
    and then you
    
    unset($array[0]);
    You actually wind up with:
    
    $array = array(1 => $id1, 2 => $id2, 3 => $id3, 4 => $id);
    Which does not start with index 0. The MongoDB PHP driver therefore converts this into a BSON Object... Leading to validation error in MongoDB as it expected an array.
    
    Now, since the MongoDB PHP driver does not do parse your MongoDB query we cannot know which array should be exempted from this serialization rule.
    
    The workaround is, as mentioned above, is to ensure your PHP arrays are numerically indexed, starting from 0. The easiest way to do that is to run
    
    array_values($values);

      我英文水平一般般,属于基本能看懂型,稍微解释下,从 2.6.0 以后,mongodb 在使用 $in => xxx 这种形式的查询的时候,不再支持 Bson 对象,而一个数组,如果索引不是以 0 开头,那么 php 的 mongodb 的驱动就会默认将其转化为 Bson 对象,从而导致批量查询无法查询。

      说这个问题的人也说了如何解决这个问题,就是使用  array_values($values) 生成一个索引从 0 开始的新数组即可。

  • 相关阅读:
    tiny4412 硬件解码
    orb slam2 双目摄像头
    hi3516a arm-hisiv300-linux-gcc jrtplib交叉编译
    第12章_异常
    第10章_内部类:
    IO流深入总结
    实现对存放了Map集合的ArrayList的排序(按照map中某个字段比较)
    UML各图用处

    File类:
  • 原文地址:https://www.cnblogs.com/smallrookie/p/7203346.html
Copyright © 2011-2022 走看看