单个 Meteor 实例可以监听多个 MongoDB 数据库并做出反应吗?
Can a single Meteor instance listen and react to multiple MongoDB databases?
我想构建一个分布式 Meteor 应用程序网络,每个应用程序彼此共享其 Mongo 数据库的某些部分。这可能吗?
是的,您可以通过更改在服务器端定义集合的方式来做到这一点:
var database = new MongoInternals.RemoteCollectionDriver("<other mongo url>");
MyCollection = new Mongo.Collection("collection_name", { _driver: database });
我想构建一个分布式 Meteor 应用程序网络,每个应用程序彼此共享其 Mongo 数据库的某些部分。这可能吗?
是的,您可以通过更改在服务器端定义集合的方式来做到这一点:
var database = new MongoInternals.RemoteCollectionDriver("<other mongo url>");
MyCollection = new Mongo.Collection("collection_name", { _driver: database });