标签: mongodb lookup sharding
我们可以在分片中执行$lookup吗?如果是的话,你能举个例子吗?我不想更改数据库的架构。
$lookup
例如:
db.unshared_collection.aggregate([ { $lookup:{ 'from' : 'shared_collection','localField' : 'localField', 'foreignField' : 'foreignField', 'as' : 'location'}}])
感谢.....