mongodb联合$或问题

发布于 2024-09-13 02:13:43 字数 796 浏览 4 评论 0原文

我有一个集合,它是两个用户之间的操作日志。它有一个 src_id 和一个 dest_id。

我希望获取 id1 和 ids 列表之间的所有操作记录 - “ids = [id2, id3, id4]”。

以下两个语句可以正常工作:

act_obs = self.db.action_log.find(
        {'src_id': id1, 'dest_id': {'$in': ids} } 
       )

act_obs = self.db.action_log.find(
        {'dest_id': id1, 'src_id': {'$in': ids} } 
       )

但是,这是我无法弄清楚出了什么问题的地方,以下内容根本拒绝返回任何结果:

act_obs = self.db.action_log.find(
        {'$or': [
          {'dest_id': id1, 'src_id': {'$in': ids} },
          {'src_id': id1, 'dest_id': {'$in': ids} }
        ]}
       )

有人可以阐明我做错了什么吗?案件?更重要的是,如何在 mongo 中完成我想要做的事情。

我试图获取 id1 是 src_id 并且 ids 列表中的任何 id 是 dest_id 的所有记录,或者 id1 是 dest_id 且 ids 列表中的任何 id 是 src_id 的任何记录。

我正在使用 pymongo 1.7。谢谢你!

I have a collection which is an action log between two users. It has a src_id and a dest_id.

I'm a looking to fetch all the records that are actions between id1 and a list of ids - "ids = [id2, id3, id4]".

The following two statements work properly:

act_obs = self.db.action_log.find(
        {'src_id': id1, 'dest_id': {'$in': ids} } 
       )

act_obs = self.db.action_log.find(
        {'dest_id': id1, 'src_id': {'$in': ids} } 
       )

However, and this is where I can't figure out what is wrong, the following refuses to return any results at all:

act_obs = self.db.action_log.find(
        {'$or': [
          {'dest_id': id1, 'src_id': {'$in': ids} },
          {'src_id': id1, 'dest_id': {'$in': ids} }
        ]}
       )

Can someone shed some light on what I'm doing wrong, if that is the case? And more importantly, how to accomplish what I'm trying to do within mongo.

I'm trying to get all the records where id1 is the src_id and any of the ids in the ids list is the dest_id OR any records where id1 is the dest_id and any of the ids in the ids list is the src_id.

I'm using pymongo 1.7. Thank you!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

飘落散花 2024-09-20 02:13:43

$or 运算符在 MongoDB 1.5.3 及更高版本中可用。

另一种方法是使用 Javascript 函数,例如......

find = self.db.action_log.find()
find.where(pymongo.code.Code('this.dest_id==1 || this.src_id==2'))

The $or operator is available in MongoDB 1.5.3 and later.

An alternative is to use a Javascript function, something like...

find = self.db.action_log.find()
find.where(pymongo.code.Code('this.dest_id==1 || this.src_id==2'))
绅士风度i 2024-09-20 02:13:43

我认为您不能像这样使用 $or 。您必须执行联盟客户端。

I don't think that you can use $or like that. You will have to perform the union client side.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文