Laddade ner meteors källkoder och kikade in i mongopaketet. Det finns ett sätt att hacka kring att behöva deklarera olika samlingsnamn på mongodb-servern baserat på Huberts förslag.
I serversidan model.js har jag gjort dessa anpassningar:
Documents.getCollectionByMongoUrl = function (userId, url) {
if (!(userId in documentCollections)) {
var driver = new MongoInternals.RemoteCollectionDriver(url);
documentCollections[userId] = new Meteor.Collection("documents" + userId, { _driver: driver });
documentCollections[userId]._connection = driver.open("documents", documentCollections[userId]._connection);
}
return documentCollections[userId];
};
Super hackjobb här. Var försiktig när du använder detta!!!!