Pobrałem kody źródłowe meteora i zajrzałem do pakietu mongo. Jest sposób na zhakowanie wokół konieczności deklarowania różnych nazw kolekcji na serwerze mongodb na podstawie sugestii Huberta.
Po stronie serwera model.js dokonałem tych adaptacji:
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];
};
Tutaj super hakerska robota. Zachowaj ostrożność podczas korzystania z tego!!!!