码迷,mamicode.com
首页 > 数据库 > 详细

解决 mongodb $in needs an array 问题

时间:2017-07-19 00:18:11      阅读:527      评论:0      收藏:0      [点我收藏+]

标签:解决   rac   执行   dex   https   into   支持   work   基本   

问题现象:

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

解决 mongodb $in needs an array 问题

标签:解决   rac   执行   dex   https   into   支持   work   基本   

原文地址:http://www.cnblogs.com/smallrookie/p/7203346.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!