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 开始的新数组即可。

  • 相关阅读:
    SQL SELECT INTO 语句
    跨站脚本攻击测试[转]
    Visual Studio 2008中如何比较二个数据库的架构【Schema】和数据【Data】并同步 [转贴]
    联表UPDATE
    网站架构策划方案
    概念模型 逻辑模型 物理模型 区别
    Repeater嵌套绑定Repeater
    .net 2.0升级到了.net 3.5,开发工具从vs2005转为vs2008
    你必须知道的C#的25个基础概念(附演示) 【转】
    window2003中,在IIS中,如何解决不能播放.FLV文件
  • 原文地址:https://www.cnblogs.com/smallrookie/p/7203346.html
Copyright © 2011-2022 走看看