Stáhl jsem zdrojové kódy meteoru a nakoukl do mongo balíčku. Existuje způsob, jak hacknout kolem nutnosti deklarovat různé názvy kolekcí na serveru mongodb na základě Hubertova návrhu.
V model.js na straně serveru jsem provedl tyto úpravy:
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 hacking zde. Při používání tohoto buďte opatrní!!!!