Mengunduh kode sumber meteor dan mengintip ke dalam paket mongo. Ada cara untuk meretas sekitar harus mendeklarasikan nama koleksi yang berbeda di server mongodb berdasarkan saran Hubert.
Di model.js sisi server, saya telah membuat adaptasi ini:
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];
};
Pekerjaan peretasan super di sini. Hati-hati saat menggunakan ini!!!!