mongodb联合$或问题
我有一个集合,它是两个用户之间的操作日志。它有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
$or 运算符在 MongoDB 1.5.3 及更高版本中可用。
另一种方法是使用 Javascript 函数,例如......
The $or operator is available in MongoDB 1.5.3 and later.
An alternative is to use a Javascript function, something like...
我认为您不能像这样使用
$or
。您必须执行联盟客户端。I don't think that you can use
$or
like that. You will have to perform the union client side.